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

CreateNewRemuxTemplate1EAC3ToOutputNamingService() public method

public CreateNewRemuxTemplate1EAC3ToOutputNamingService ( ) : AbstractEAC3ToOutputNamingService
return AbstractEAC3ToOutputNamingService
        public AbstractEAC3ToOutputNamingService CreateNewRemuxTemplate1EAC3ToOutputNamingService()
        {
            return new RemuxTemplate1EAC3ToOutputNamingService(_audioService);
        }

Usage Example

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