Ejemplo n.º 1
0
 public ProfileController(IBase_ProfileService iBase_ProfileServicel,
                          IBase_CarService iBase_CarService,
                          IBase_FactoryService iBase_FactoryService,
                          IBase_StoreService iBase_StoreService,
                          IBase_AccountService iBase_AccountService,
                          IBase_RealestateService iBase_RealestateService)
 {
     this._IBase_ProfileServicel   = iBase_ProfileServicel;
     this._IBase_CarService        = iBase_CarService;
     this._IBase_FactoryService    = iBase_FactoryService;
     this._IBase_StoreService      = iBase_StoreService;
     this._IBase_AccountService    = iBase_AccountService;
     this._IBase_RealestateService = iBase_RealestateService;
 }
Ejemplo n.º 2
0
 public OrderController(IG_OrderService iG_OrderService,
                        IBase_FactoryService iBase_FactoryService,
                        IBase_StoreService iBase_StoreService,
                        IG_LoanProductService iG_LoanProductService,
                        IG_UserService iG_UserService,
                        IG_UserDetailService iG_UserDetailService)
 {
     this._IG_OrderService       = iG_OrderService;
     this._IBase_FactoryService  = iBase_FactoryService;
     this._IBase_StoreService    = iBase_StoreService;
     this._IG_LoanProductService = iG_LoanProductService;
     this._IG_UserService        = iG_UserService;
     this._IG_UserDetailService  = iG_UserDetailService;
 }
Ejemplo n.º 3
0
 public G_OrderService(IRepositoryContext context,
                       IG_OrderRepository iG_OrderRepository,
                       IBase_StoreRepository iBase_StoreRepository,
                       IG_UserDetailRepository iG_UserDetailRepository,
                       IG_OrderRecordRepository iG_OrderRecordRepository,
                       IG_FileService iG_FileService,
                       IBase_StoreService iBase_StoreService)
     : base(context)
 {
     this._IG_OrderRepository       = iG_OrderRepository;
     this._IBase_StoreRepository    = iBase_StoreRepository;
     this._IG_UserDetailRepository  = iG_UserDetailRepository;
     this._IG_OrderRecordRepository = iG_OrderRecordRepository;
     this._IG_FileService           = iG_FileService;
     this._IBase_StoreService       = iBase_StoreService;
 }