示例#1
0
 public AddModel(
     TimeapContext context,
     UserManager <User> userManager)
 {
     this.context     = context;
     this.userManager = userManager;
 }
示例#2
0
 protected BaseService(
     TimeapContext dbContext,
     IMapper mapper)
 {
     this.DbContext = dbContext;
     this.Mapper    = mapper;
 }
示例#3
0
 public IndexModel(
     UserManager <User> userManager,
     TimeapContext context)
 {
     this.userManager = userManager;
     this.context     = context;
 }
示例#4
0
 public DeveloperTeamsService(TimeapContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }
 public DeveloperSolutionsService(TimeapContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }