BatchGuy.App.Eac3To.Abstracts.AbstractEAC3ToOutputNamingServiceFactory.CreateNewRemuxTemplate3EAC3ToOutputNamingService C# (CSharp) Method

CreateNewRemuxTemplate3EAC3ToOutputNamingService() public method

public CreateNewRemuxTemplate3EAC3ToOutputNamingService ( ) : AbstractEAC3ToOutputNamingService
return AbstractEAC3ToOutputNamingService
        public AbstractEAC3ToOutputNamingService CreateNewRemuxTemplate3EAC3ToOutputNamingService()
        {
            return new RemuxTemplate3EAC3ToOutputNamingService(_audioService);
        }

Usage Example

 public void abstractEAC3ToOutputNamingServiceFactory_CreateNewRemuxTemplate3EAC3ToOutputNamingService_test()
 {
     //given
     AbstractEAC3ToOutputNamingServiceFactory factory = new AbstractEAC3ToOutputNamingServiceFactory(new AudioService());
     //when
     AbstractEAC3ToOutputNamingService service = factory.CreateNewRemuxTemplate3EAC3ToOutputNamingService();
     //then
     service.EnumEAC3ToNamingConventionType.Should().Be(EnumEAC3ToNamingConventionType.RemuxNamingConventionTemplate3);
 }
All Usage Examples Of BatchGuy.App.Eac3To.Abstracts.AbstractEAC3ToOutputNamingServiceFactory::CreateNewRemuxTemplate3EAC3ToOutputNamingService