public WebHooksController(IWebHooksService webHooksService, GrocedyContext context, IConfiguration configuration, IUnitOfWork unitOfWork) { this.context = context; this.configuration = configuration; this.unitOfWork = unitOfWork; this.webHooksService = webHooksService; }
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; }
public UserPaymentSubscriptionDetailsRepository(GrocedyContext context) : base(context) { }
public Repository(GrocedyContext context) { this.context = context; }
public UserReferalsMappingsRepository(GrocedyContext context) : base(context) { }
public ZohoCustomerMappingRepository(GrocedyContext context) : base(context) { }
public LogsRepository(GrocedyContext context) : base(context) { }
public UnitOfWork(GrocedyContext context) { this.context = context; }
public UsersMetaRepository(GrocedyContext context) : base(context) { }
public UserReferalDetailsRepository(GrocedyContext context) : base(context) { }