public SellerService(IValidationDictionary validationDictionary, IBillRepository billrepository, IProductRepository productrespository, IBillDetailRespository billdetailrepository, ICustomerRepository customerrepository, ICodeSalesRepository coderepository) { _validationDictionary = validationDictionary; _billrepository = billrepository; _productrepository = productrespository; _billdetailrepository = billdetailrepository; _customerrepository = customerrepository; _codesrepository = coderepository; }
public CodeService(IValidationDictionary validationDictionary, ICodeSalesRepository repository) { _validationDictionary = validationDictionary; _repository = repository; }