예제 #1
0
 public AdvertManager(KutyAppServiceDbContext dbContext, IMapper mapper, IAuthManager authManager, IKutyAppContext kutyAppContext)
 {
     DbContext      = dbContext;
     Mapper         = mapper;
     AuthManager    = authManager;
     KutyAppContext = kutyAppContext;
 }
예제 #2
0
 public PetManager(KutyAppServiceDbContext dbContext, IMapper mapper, IKutyAppContext kutyAppContext, IAuthManager authManager, IDataManager dataManager)
 {
     DbContext      = dbContext;
     Mapper         = mapper;
     KutyAppContext = kutyAppContext;
     AuthManager    = authManager;
     DataManager    = dataManager;
 }
예제 #3
0
 public KutyAppContext(KutyAppServiceDbContext dbContext)
 {
     DbContext = dbContext;
 }
예제 #4
0
 public DatabaseManager(KutyAppServiceDbContext dbContext, ILocationManager locationManager, IMapper mapper)
 {
     DbContext       = dbContext;
     LocationManager = locationManager;
     Mapper          = mapper;
 }