Пример #1
0
        internal BaseValidationService(ShipsContext context)
        {
            this.context = context;
            userManager  = new UserManager <IdentityUser>(new UserStore <IdentityUser>(context));

            validationErrors = new List <string>();
        }
Пример #2
0
 public ShipService(ShipsContext context)
 {
     this.context = context;
 }
Пример #3
0
 public ShotValidationService(ShipsContext context)
     : base(context)
 {
 }
Пример #4
0
 public ShipsController(ShipsContext _context)
 {
     context = _context;
 }
Пример #5
0
 public GameValidationService(ShipsContext context)
     : base(context)
 {
 }
Пример #6
0
 public GameService(ShipsContext context)
 {
     this.context = context;
 }