Exemplo n.º 1
0
 public WorkController(IConfiguration config, IWebHostEnvironment webHostEnvironment, IHttpContextAccessor httpContextAccessor) : base(config, webHostEnvironment, httpContextAccessor)
 {
     _WorkRepo    = new WorkRepo(ConnString);
     _PaymentRepo = new PaymentRepo(ConnString);
     _JobRepo     = new JobRepo(ConnString);
     _AppUserRepo = new AppUserRepo(ConnString);
 }
Exemplo n.º 2
0
 public PaymentController(IConfiguration config, IWebHostEnvironment webHostEnvironment, IHttpContextAccessor httpContextAccessor) : base(config, webHostEnvironment, httpContextAccessor)
 {
     _PaymentRepo = new PaymentRepo(ConnString);
     _WorkRepo    = new WorkRepo(ConnString);
     _JobRepo     = new JobRepo(ConnString);
     _LookupRepo  = new LookupRepo(ConnString);
 }
Exemplo n.º 3
0
 public PaymentController()
 {
     _PaymentRepo = new PaymentRepo(ConnString);
     _WorkRepo    = new WorkRepo(ConnString);
     _JobRepo     = new JobRepo(ConnString);
     _LookupRepo  = new LookupRepo(ConnString);
 }
Exemplo n.º 4
0
 public WorkController()
 {
     _WorkRepo    = new WorkRepo(ConnString);
     _PaymentRepo = new PaymentRepo(ConnString);
     _LookupRepo  = new LookupRepo(ConnString);
 }