//Constructor
 public StatisticsController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 2
0
 //Constructor
 public PartnerController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 3
0
 //Constructor
 public CauseController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 4
0
 public GenericRepository()
 {
     this._context = new CharityDBContext();
     table         = _context.Set <T>();
 }
Ejemplo n.º 5
0
 public GenericRepository(CharityDBContext _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
Ejemplo n.º 6
0
 //Constructor
 public RESTController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 7
0
 //Constructor
 public MapController(CharityDBContext context)
 {
     db = context;
 }
 //Constructor
 public SubscriptionController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 9
0
 //Constructor
 public SignatureController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 10
0
 //Constructor
 public ProductController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 11
0
 //Constructor
 public DonationController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 12
0
 //Constructor
 public PlanController(CharityDBContext context)
 {
     db = context;
 }
Ejemplo n.º 13
0
 //Constructor
 public EShopController(CharityDBContext context)
 {
     _dbContext = context;
 }
Ejemplo n.º 14
0
 //Constructor
 public HomeController(CharityDBContext context)
 {
     db = context;
 }