public CreateSupplierUseCase(ISupplierGateway supplierGateway)
 {
     _supplierGateway = supplierGateway;
 }
Beispiel #2
0
 public SupplierGatewayTests()
 {
     _gateway       = new SupplierGateway(Context, Mapper);
     _supplierFaker = new Faker <Supplier>()
                      .RuleFor(s => s.SupplierName, f => f.Company.CompanyName());
 }
Beispiel #3
0
 public GetAllSupplierUseCase(ISupplierGateway supplierGateway)
 {
     _supplierGateway = supplierGateway;
 }