Example #1
0
 public PhoneRepository(PhoneInfoDBContext dbContext) : base(dbContext)
 {
 }
Example #2
0
 public UsersController(PhoneInfoDBContext context)
 {
     _context = context;
 }
Example #3
0
 public BaseRepository(PhoneInfoDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
Example #4
0
 public TipUsController(PhoneInfoDBContext context, TipUsService tipusService)
 {
     _context      = context;
     _tipusService = tipusService;
 }
 public AdminsController(PhoneInfoDBContext context)
 {
     _context = context;
 }