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