public BrandsDatabaseService()
 {
     dbContext = new OrderSystemDbContext();
 }
 public OrdersDatabaseService(OrderSystemDbContext dbcon)
 {
     dbContext = dbcon;
 }
Ejemplo n.º 3
0
 public RoleDatabaseService()
 {
     dbContext = new OrderSystemDbContext();
 }
Ejemplo n.º 4
0
 public UserDatabaseService(UserManager <User> urManager)
 {
     dbContext   = new OrderSystemDbContext();
     userManager = urManager;
 }
 public PartnersDatabaseService()
 {
     dbContext = new OrderSystemDbContext();
 }
Ejemplo n.º 6
0
 public StatusDatabaseService()
 {
     dbContext = new OrderSystemDbContext();
 }
 public CategoryDatabaseService()
 {
     dbContext = new OrderSystemDbContext();
 }