public WebHooksController(IWebHooksService webHooksService, GrocedyContext context, IConfiguration configuration, IUnitOfWork unitOfWork)
 {
     this.context         = context;
     this.configuration   = configuration;
     this.unitOfWork      = unitOfWork;
     this.webHooksService = webHooksService;
 }
Beispiel #2
0
 public AccountController(IAccountService accountService, GrocedyContext context, IConfiguration configuration, IUnitOfWork unitOfWork, IRazorViewToStringRenderer renderer)
 {
     this.context        = context;
     this.configuration  = configuration;
     _renderer           = renderer;
     this.unitOfWork     = unitOfWork;
     this.accountService = accountService;
 }
Beispiel #3
0
 public UserPaymentSubscriptionDetailsRepository(GrocedyContext context) : base(context)
 {
 }
Beispiel #4
0
 public Repository(GrocedyContext context)
 {
     this.context = context;
 }
 public UserReferalsMappingsRepository(GrocedyContext context) : base(context)
 {
 }
Beispiel #6
0
 public ZohoCustomerMappingRepository(GrocedyContext context) : base(context)
 {
 }
Beispiel #7
0
 public LogsRepository(GrocedyContext context) : base(context)
 {
 }
Beispiel #8
0
 public UnitOfWork(GrocedyContext context)
 {
     this.context = context;
 }
Beispiel #9
0
 public UsersMetaRepository(GrocedyContext context) : base(context)
 {
 }
 public UserReferalDetailsRepository(GrocedyContext context) : base(context)
 {
 }