public SchedulingRepository(BarberShopContext context)
 {
     _context = context;
 }
Example #2
0
 public ClienteRepositorio(BarberShopContext context) : base(context)
 {
 }
 public UnityOfWorkClass(BarberShopContext _context)
 {
     context = _context;
 }
 public EfAppointmentsRepository(BarberShopContext db)
 {
     this.db = db;
 }
Example #5
0
 public Repository(BarberShopContext context)
 {
     _context = context;
     _set     = _context.Set <T>();
 }
Example #6
0
 public AccountRepository(BarberShopContext _context)
 {
     context = _context;
 }
Example #7
0
 public PictureRepo(BarberShopContext context)
 {
     _context = context;
 }
 public ServiceRepository(BarberShopContext context)
 {
     _context = context;
 }
Example #9
0
 public GenericRepository(BarberShopContext _context)
 {
     m_Context = _context;
     m_DbSet   = m_Context.Set <T>();
 }
Example #10
0
 public ServicoRepositorio(BarberShopContext context) : base(context)
 {
 }
Example #11
0
 public CargosController(BarberShopContext context)
 {
     _context = context;
 }
Example #12
0
 public AccountController(BarberShopContext context)
 {
     _context = context;
 }
Example #13
0
 public MastersController(ICrudService <Master> crudService, BarberShopContext context)
 {
     _crudService = crudService;
     _context     = context;
 }
Example #14
0
 public CustomerRepository(BarberShopContext context)
 {
     _context = context;
 }
Example #15
0
 public HorarioRepositorio(BarberShopContext context) : base(context)
 {
 }
Example #16
0
 public HomeController(BarberShopContext context)
 {
     db = context;
 }
Example #17
0
 public UnitOfWork(BarberShopContext context)
 {
     _context = context;
 }
Example #18
0
 public Repositorio(BarberShopContext context)
 {
     _context = context;
     DbSet    = _context.Set <T>();
 }
Example #19
0
 public UserRepository(BarberShopContext context)
 {
     _context = context;
 }