public ArticleController(ISimpleAccountManager simpleAccount, IArticleService articleService, IHelperServices helperServices)
     : base(simpleAccount, articleService)
 {
     _simpleAccount = simpleAccount;
     _articleService = articleService;
     _helperServices = helperServices;
 }
Esempio n. 2
0
 public AccountController()
 {
     utilityServices = new UtiltiyServices();
     helperServices  = new Services.HelperServices();
 }
 public HelperServicesController()
 {
     services        = new Services.HelperServices();
     utilityServices = new UtiltiyServices();
 }
Esempio n. 4
0
 public TrustController()
 {
     services        = new Services.HelperServices();
     fileServices    = new Services.FileServices();
     utilityServices = new Services.UtiltiyServices();
 }
 public MaterialCategoryController(IMaterialCategoryService material, IHelperServices helperServices)
 {
     _material       = material;
     _helperServices = helperServices;
 }
Esempio n. 6
0
 public Application(IHelperServices helper)
 {
     _helper = helper;
 }
Esempio n. 7
0
 public HelpersController()
 {
     services = new Services.HelperServices();
 }
Esempio n. 8
0
 public OutpatientCasesController(IOutpatientCasesService outpatientCases, IHelperServices helperServices, IMaterialCategoryService material)
 {
     _outpatientCases = outpatientCases;
     _helperServices  = helperServices;
     _material        = material;
 }