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

CreateNewRemuxTemplate2EAC3ToOutputNamingService() public method

public CreateNewRemuxTemplate2EAC3ToOutputNamingService ( ) : AbstractEAC3ToOutputNamingService
return AbstractEAC3ToOutputNamingService
        public AbstractEAC3ToOutputNamingService CreateNewRemuxTemplate2EAC3ToOutputNamingService()
        {
            return new RemuxTemplate2EAC3ToOutputNamingService(_audioService);
        }

Usage Example

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