Пример #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;
 }
 public KutyAppContextFilter(IKutyAppContext context, Serilog.ILogger logger)
 {
     Context = context;
     Logger  = logger;
 }
Пример #4
0
 public PetOwnershipResolver(IKutyAppContext kutyAppContext)
 {
     KutyAppContext = kutyAppContext;
 }