public ApplyLeaveController(ApplySignRepository repository, PunchCardRepository repository02,
                             IHttpContextAccessor httpContextAccessor, punchCardFunction fn) : base(httpContextAccessor)
 {
     this.Repository      = repository;
     this.RepositoryPunch = repository02;
     this.punchCardFn     = fn;
 }
 public PunchCardController(PunchCardRepository repository, punchCardFunction fn,
                            IHttpContextAccessor httpContextAccessor, ApplySignRepository a_repository) : base(httpContextAccessor)
 {
     this.Repository  = repository;
     this.punchCardFn = fn;
     this.aRepository = a_repository;
 }
示例#3
0
 public ApplicationSignController(ApplySignRepository repository, MasterRepository masterRepository,
                                  IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
 {
     this.Repository  = repository;
     this.mRepository = masterRepository;
 }