Esempio n. 1
0
        public UserBusinessEntity(IUserService userService,
                                  ISupplierBaseBusinessEntity supplierBaseBusinessEntity,
                                  IDeliverySlotsBusinessEntity deliverySlotsBusinessEntity,
                                  IStandardInventoryBusinessEntity standardInventoryBusinessEntity,
                                  ISupplierStandardInventoryBusinessEntity supplierStandardInventoryBusinessEntity,
                                  IZoneBusinessEntity zoneBusinessEntity)

        {
            this.userService = userService;
            this.supplierBaseBusinessEntity              = supplierBaseBusinessEntity;
            this.standardInventoryBusinessEntity         = standardInventoryBusinessEntity;
            this.deliverySlotsBusinessEntity             = deliverySlotsBusinessEntity;
            this.supplierStandardInventoryBusinessEntity = supplierStandardInventoryBusinessEntity;
            this.zoneBusinessEntity = zoneBusinessEntity;
        }
 public ZoneController(IZoneBusinessEntity zoneService)
 {
     this.zoneService = zoneService;
 }