Ejemplo n.º 1
0
 public PublicationService(PawGuideDbContext db, MapperConfiguration config)
 {
     this.db     = db;
     this.config = config;
 }
Ejemplo n.º 2
0
 public BusinessService(PawGuideDbContext db, UserManager <User> userManager)
 {
     this.db          = db;
     this.userManager = userManager;
 }
Ejemplo n.º 3
0
 public BusinessServiceTest()
 {
     Tests.Initialize();
     this.db = Tests.GetDatabase();
 }