public ReceiptRepository(SiddiquiAssociateDBContext dbContext, IHostingEnvironment env) //Constructor
 {
     this.dbContext = dbContext;
     this.env       = env;
     up             = new UtilitiesProvider(env);
 }
 public FilePresenter(IFile file, IHostingEnvironment env) //Constructor
 {
     this.file = file;
     this.env  = env;
     up        = new UtilitiesProvider(env);
 }
 public ReceiptPresenter(IReceipt receipt, IHostingEnvironment env) // Constructor
 {
     this.receipt = receipt;
     this.env     = env;
     up           = new UtilitiesProvider(env);
 }
 public EmployeePresenter(IEmployee employee, IHostingEnvironment env) //Constructor
 {
     this.env      = env;
     this.employee = employee;
     up            = new UtilitiesProvider(env);
 }