public ProductManagementBusinessService(IProductManagementDataService productManagementDataService,
                                         ConnectionStrings connectionStrings, IMapper mapper)
 {
     _productManagementDataService = productManagementDataService;
     _connectionStrings            = connectionStrings;
     _mapper = mapper;
 }
示例#2
0
 public ProductBusinessRules(T entity, IProductManagementDataService productManagementDataService) : base(entity)
 {
     _productManagementDataService = productManagementDataService;
     _entity = entity;
 }