public HomeController(AttendenceService ObjAttendenceService, AccountService ObjAccountService, SellGoodService ObjSellGoodService)
 {
     this.ObjAttendenceService = ObjAttendenceService;
     this.ObjSellGoodService   = ObjSellGoodService;
     this.ObjAccountService    = ObjAccountService;
 }
 public SellGoodsController(SellGoodService sellGoodService, AccountService accountService)
 {
     this.sellGoodService = sellGoodService;
     this.accountService  = accountService;
     this.context         = BeanContext.GetInstance();
 }