public GenerateDBService(eCinemaDbContext context)
     : base(context)
 {
 }
 public UnityOfWork(eCinemaDbContext context)
 {
     _context = context;
 }
 public GenerateDBController()
 {
     eCinemaDbContext _context = new eCinemaDbContext();
     _dbService = new GenerateDBService(_context);
 }
 public AccountService(eCinemaDbContext context)
     : base(context)
 {
 }
 public AccountController()
 {
     eCinemaDbContext context = new eCinemaDbContext();
     _accService = new AccountService(context);
 }
 public BaseService(eCinemaDbContext context)
 {
     _uWork = new UnityOfWork(context);
 }