예제 #1
0
 public CrmCustomersController(PmsContext context)
 {
     _context = context;
 }
예제 #2
0
 public NotifiesController(PmsContext context)
 {
     _context = context;
 }
예제 #3
0
 public LogHistoriesController(PmsContext context)
 {
     _context = context;
 }
예제 #4
0
 public PreSalesController(PmsContext context)
 {
     _context = context;
 }
예제 #5
0
 public GetReportHandler(PmsContext dbContext, IProjectStateResolver projectStateResolver) : base(dbContext)
 {
     _projectStateResolver = projectStateResolver;
 }
예제 #6
0
 public ProjectRepository(PmsContext dbContext)
     : base(dbContext)
 {
 }
예제 #7
0
 public TaskRepository(PmsContext dbContext)
     : base(dbContext)
 {
 }
 public CustomerVisitHistoriesController(PmsContext context)
 {
     _context = context;
 }
예제 #9
0
 public CrmCustomerRepository(PmsContext context)
 {
     _context = context;
 }
예제 #10
0
 public BaseHandler(PmsContext dbContext)
 {
     DbContext = dbContext;
 }