예제 #1
0
 public AccountService(IUserRepository userRepository, IRoleService roleService, ISafeguardTimeService safeguardTimeService, IUnitOfWork unitOfWork)
     : base(unitOfWork)
 {
     this._UserRepository       = userRepository;
     this._RoleService          = roleService;
     this._SafeguardTimeService = safeguardTimeService;
 }
예제 #2
0
 public WageBaseTableController(ITaxBaseByMonthService taxBaseByMonthService, ITaxBaseEveryMonthService taxBaseEveryMonthService, ITaxPerOrderHistoryService taxPerOrderHistoryService, ITaxPerOrderService taxPerOrderService, ISafeguardTimeService safeguardTimeService)
 {
     this._taxBaseByMonthService     = taxBaseByMonthService;
     this._taxBaseEveryMonthService  = taxBaseEveryMonthService;
     this._taxPerOrderHistoryService = taxPerOrderHistoryService;
     this._taxPerOrderService        = taxPerOrderService;
     this._safeguardTimeService      = safeguardTimeService;
 }