예제 #1
0
 public GallaryModel(IManufacture manufacutre, ICar car, IBuy buy, IBuyRecords buyRecords, IOutcome outcome, IPaginatedMetaService paginatedMetaService)
 {
     this.manufacutre      = manufacutre;
     this.car              = car;
     this.buy              = buy;
     this.buyRecords       = buyRecords;
     this.outcome          = outcome;
     _paginatedMetaService = paginatedMetaService;
 }
예제 #2
0
 public SaleModel(ICar car, IManufacture manufacture, Ifile file, ISale sale, ISellrecord sellrecord, IIncome income, ICash cash, ICheck check, ICustomer customer)
 {
     this.car         = car;
     this.manufacture = manufacture;
     _file            = file;
     _sale            = sale;
     this.sellrecord  = sellrecord;
     this.income      = income;
     this.cash        = cash;
     this.check       = check;
     this.customer    = customer;
 }
예제 #3
0
 public buyAcarModel(IHostingEnvironment hostingEnv, ICheck incomes, IManufacture manufacture, IOutcome outcome, ICar car, IBuy buy, ICash cash, ICheck check, IBuyRecords buyrecord, Iperson saleperson, Ifile file)
 {
     _incomes     = incomes;
     _hostingEnv  = hostingEnv;
     _manufacture = manufacture;
     _outcome     = outcome;
     _car         = car;
     _buy         = buy;
     _cash        = cash;
     _check       = check;
     _buyrecord   = buyrecord;
     _saleperson  = saleperson;
     _file        = file;
 }
예제 #4
0
 public ManufactureController(IManufacture manufacture)
 {
     _manufacture = manufacture;
 }