Ejemplo n.º 1
0
        public ActionResult Index()
        {
            NotificationRepo objRepo = new NotificationRepo();
            var result = objRepo.GetData();

            return(View());
        }
Ejemplo n.º 2
0
        public JsonResult Values()
        {
            NotificationRepo objRepo = new NotificationRepo();

            // return new JsonResult()
            return(Json(objRepo.GetData(), JsonRequestBehavior.AllowGet));
        }
Ejemplo n.º 3
0
 public ManagerController(ProjectRepo _projectRepo, UserRepo _userRepo, ManipulateUsers _usersManipulator, NotificationRepo _notificationRepo)
 {
     projectRepo      = _projectRepo;
     userRepo         = _userRepo;
     usersManipulator = _usersManipulator;
     notificationRepo = _notificationRepo;
 }
Ejemplo n.º 4
0
        public async Task SetMethods()
        {
            var accrepo = AccountRepo;
            var skey    = await accrepo.RegisterUser("*****@*****.**", "123");

            var userid = await accrepo.CheckSession(skey);

            var notificationRepo = new NotificationRepo(AccountContextProvider, Logger);
            var skillRepo        = new SkillRepo(AccountContextProvider, Logger, notificationRepo);
            var repo             = new PilotRepo(AccountContextProvider, Logger, null);

            // stage 1
            var userData = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        Name      = "Pilot1",
                        Skills    = new List <Skill>(),
                        EveId     = 1,
                        KeyInfoId = 10,
                    },
                    new Pilot()
                    {
                        EveId     = 2,
                        Name      = "Pilot2",
                        Skills    = new List <Skill>(),
                        KeyInfoId = 11
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new List <Job>(),
            };

            await repo.Update(userid, userData);

            Assert.AreNotEqual(0, userData.Pilots[0].PilotId);

            await repo.SetFreeManufacturingJobsNofificationCount(userData.Pilots[0].PilotId, 10);

            await repo.SetFreeResearchJobsNofificationCount(userData.Pilots[1].PilotId, 20);

            var pilots = await repo.GetAll(userid);

            Assert.AreEqual(2, pilots.Count);

            var p1 = pilots.FirstOrDefault(x => x.PilotId == userData.Pilots[0].PilotId);
            var p2 = pilots.FirstOrDefault(x => x.PilotId == userData.Pilots[1].PilotId);

            Assert.IsNotNull(p1);
            Assert.IsNotNull(p2);
            Assert.AreEqual(10, p1.FreeManufacturingJobsNofificationCount);
            Assert.AreEqual(0, p1.FreeResearchJobsNofificationCount);
            Assert.AreEqual(20, p2.FreeResearchJobsNofificationCount);
            Assert.AreEqual(0, p2.FreeManufacturingJobsNofificationCount);
        }
Ejemplo n.º 5
0
        public IHttpActionResult CreateNoti(NotificationModel noti)
        {
            string            error = "";
            NotificationModel notim = NotificationRepo.CreatNotification(noti, out error);

            if (error != "" || notim == null)
            {
                return(Content(HttpStatusCode.BadRequest, error));
            }
            return(Ok(notim));
        }
Ejemplo n.º 6
0
        public IHttpActionResult UpdateNotiRead(int id)
        {
            string            error = "";
            NotificationModel notim = NotificationRepo.UpdateNotiRead(id, out error);

            if (error != "" || notim == null)
            {
                return(Content(HttpStatusCode.BadRequest, error));
            }
            return(Ok(notim));
        }
Ejemplo n.º 7
0
        public AccountController(IConfiguration iconfiguration)
        {
            string con = iconfiguration.GetSection("ConnectionStrings").GetSection("connectionstring").Value;

            iaccountcontext = new AccountMsSqlContext(con);
            accountrepo     = new AccountRepo(iaccountcontext);

            inotificationcontext = new NotificationMsSqlContext(con);
            notificationrepo     = new NotificationRepo(inotificationcontext);

            accVeri = new AccountVerification();
        }
Ejemplo n.º 8
0
        public StockyAppService()
        {
            if (Helpers.DBIdentification)
            {
                Stocky.DataAcesse.DataBase.DBConnection.Set("LocalHost", "Stocky");
            }
            else
            {
                Stocky.DataAcesse.DataBase.DBConnection.Set(@"7TECH-SVR1", "Stocky_LIVE", "applogin", "728652Hotdog");
            }

            SettingsRepo     = new SettingsRepo();
            UserRepo         = new UserRepo();
            NotificationRepo = new NotificationRepo();
        }
Ejemplo n.º 9
0
        public IHttpActionResult GetNotificationByid(int notiid)
        {
            string            error = "";
            NotificationModel nm    = NotificationRepo.GetNotiBynotiid(notiid, out error);

            if (error != "" || nm == null)
            {
                if (error == ConError.Status.NOTFOUND)
                {
                    return(Content(HttpStatusCode.NotFound, "Notification Not Found"));
                }
                return(Content(HttpStatusCode.BadRequest, error));
            }
            return(Ok(nm));
        }
Ejemplo n.º 10
0
        public APIInteraction(IConfiguration iconfiguration)
        {
            config = iconfiguration;
            string con = config.GetSection("ConnectionStrings").GetSection("connectionstring").Value;

            iappointmentcontext = new AppointmentMsSqlContext(con);
            appointmentrepo     = new AppointmentRepo(iappointmentcontext);

            inotificationcontext = new NotificationMsSqlContext(con);
            notificationrepo     = new NotificationRepo(inotificationcontext);

            iaccountcontext = new AccountMsSqlContext(con);
            accountrepo     = new AccountRepo(iaccountcontext);

            notificationController = new NotificationController(config);
        }
Ejemplo n.º 11
0
        public IHttpActionResult GetNotiByunread(bool isread, int deptid, int role)
        {
            string error = "";
            //  isread = ConNotification.IsRead.UnRead;
            List <NotificationModel> nms =
                NotificationRepo.GetNotiByisread(isread, deptid, role, out error);

            if (error != "" || nms == null)
            {
                if (error == ConError.Status.NOTFOUND)
                {
                    return(Content(HttpStatusCode.NotFound, "PO Not Found"));
                }
                return(Content(HttpStatusCode.BadRequest, error));
            }
            return(Ok(nms));
        }
Ejemplo n.º 12
0
        public IHttpActionResult GetAllNoti()
        {
            // declare and initialize error variable to accept the error from Repo
            string error = "";


            List <NotificationModel> nms = NotificationRepo.GetAllNoti(out error);

            if (error != "" || nms == null)
            {
                // if the error is 404
                if (error == ConError.Status.NOTFOUND)
                {
                    return(Content(HttpStatusCode.NotFound, "Purchase Order Not Found"));
                }
                // if the error is other one
                return(Content(HttpStatusCode.BadRequest, error));
            }
            // if there is no error
            return(Ok(nms));
        }
Ejemplo n.º 13
0
        public async Task SinglePilot()
        {
            // MicioGatto key
            long   code  = 3645238;
            string vcode = "sLOD3pSHwuzKtml3inm59qvVWHiKA3rULJY7KRsuWmmHrZ0c8qAZlftLDQIHvxBq";

            var accrepo = AccountRepo;
            var skey    = await accrepo.RegisterUser("*****@*****.**", "123");

            var userid = await accrepo.CheckSession(skey);

            var keyRepo = new KeyInfoRepo(Logger, AccountContextProvider);
            await keyRepo.AddKey(userid, code, vcode);

            var pilotRepo           = new PilotRepo(AccountContextProvider, Logger, EveApi);
            var corpoRepo           = new CorporationRepo(AccountContextProvider, Logger, EveApi);
            var notificationRepo    = new NotificationRepo(AccountContextProvider, Logger);
            var skillRepo           = new SkillRepo(AccountContextProvider, Logger, notificationRepo);
            var skillInQueueRepo    = new SkillInQueueRepo(AccountContextProvider, Logger);
            var evePilotDataService = new EvePilotDataService(keyRepo, EveApi, Logger, TypeNameDict);

            var backgroundUpdate = new BackgroundUpdate(evePilotDataService, pilotRepo, corpoRepo, skillRepo, skillInQueueRepo);

            await backgroundUpdate.Update(userid);

            var pilots = await pilotRepo.GetAll(userid);

            Assert.AreEqual(1, pilots.Count);

            var p = pilots.First();

            Assert.AreEqual("MicioGatto", p.Name);
            Assert.IsTrue(p.Skills.Count > 0);
            Assert.IsTrue(p.SkillsInQueue.Count > 0);

            Assert.IsTrue(p.Skills.Any(x => x.SkillName == "Interceptors"));
        }
 public NoticeService()
 {
     nr = new NotificationRepo();
     n  = new NotificationRepo();
 }
Ejemplo n.º 15
0
 public NotificationHub(NotificationRepo _notificationRepo)
 {
     notificationRepo = _notificationRepo;
 }
Ejemplo n.º 16
0
 public IQueryable <Notification> GetAllNotifications()
 {
     return(NotificationRepo.Query().OrderByDescending(a => a.InsertDate));
 }
Ejemplo n.º 17
0
        public async Task JobsNotification()
        {
            var accrepo = AccountRepo;
            var skey    = await accrepo.RegisterUser("*****@*****.**", "123");

            var userid = await accrepo.CheckSession(skey);

            var notificationRepo = new NotificationRepo(AccountContextProvider, Logger);
            var skillRepo        = new SkillRepo(AccountContextProvider, Logger, notificationRepo);
            var pilotsRepo       = new PilotRepo(AccountContextProvider, Logger, null);
            var jobsRepo         = new JobRepo(AccountContextProvider, Logger, notificationRepo, pilotsRepo);

            // stage 1
            var userData = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId                = 1,
                        KeyInfoId            = 1,
                        Name                 = "Pilot1",
                        Skills               = new List <Skill>(),
                        MaxManufacturingJobs = 1,
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new List <Job>(),
            };

            await pilotsRepo.Update(userid, userData);

            await jobsRepo.Update(userid, userData);

            var notifications = await notificationRepo.GetAll(userid);

            Assert.AreEqual(1, notifications.Count);
            var n = notifications.First();

            Assert.AreEqual("Pilot1", n.Message);
            Assert.AreEqual("1 free manufacturing slots", n.Message2);
            await notificationRepo.Remove(n.NotificationId);

            // stage 2
            // Same info provided and expected no further notifications
            await pilotsRepo.Update(userid, userData);

            await jobsRepo.Update(userid, userData);

            notifications = await notificationRepo.GetAll(userid);

            Assert.AreEqual(0, notifications.Count);
            var pilots = await pilotsRepo.GetAll(userid);

            Assert.AreEqual(1, pilots.Count);
            Assert.AreEqual(1, pilots.First().FreeManufacturingJobsNofificationCount);

            // stage 3
            // First job started - still no notification - but notification flag shoud be reset
            var userData2 = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId                = 1,
                        KeyInfoId            = 1,
                        Name                 = "Pilot1",
                        Skills               = new List <Skill>(),
                        MaxManufacturingJobs = 1,
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new Job[]
                {
                    new Job()
                    {
                        IsManufacturing = true, Owner = "Pilot1"
                    }
                }.ToList(),
            };
            await pilotsRepo.Update(userid, userData2);

            await jobsRepo.Update(userid, userData2);

            notifications = await notificationRepo.GetAll(userid);

            Assert.AreEqual(0, notifications.Count());
            pilots = await pilotsRepo.GetAll(userid);

            Assert.AreEqual(1, pilots.Count);
            Assert.AreEqual(0, pilots.First().FreeManufacturingJobsNofificationCount);

            // stage 4
            // No running jobs - notification expected
            await pilotsRepo.Update(userid, userData);

            await jobsRepo.Update(userid, userData);

            notifications = await notificationRepo.GetAll(userid);

            Assert.AreEqual(1, notifications.Count());
            n = notifications.First();
            Assert.AreEqual("Pilot1", n.Message);
            Assert.AreEqual("1 free manufacturing slots", n.Message2);
            await notificationRepo.Remove(n.NotificationId);
        }
Ejemplo n.º 18
0
 public Notification GetNotificationById(long id)
 {
     return(NotificationRepo.Query(a => a.Id == id).FirstOrDefault());
 }
Ejemplo n.º 19
0
        public async Task DeleteKey()
        {
            var accrepo = AccountRepo;
            var skey    = await accrepo.RegisterUser("*****@*****.**", "123");

            var userid = await accrepo.CheckSession(skey);

            var notificationRepo = new NotificationRepo(AccountContextProvider, Logger);
            var skillRepo        = new SkillRepo(AccountContextProvider, Logger, notificationRepo);
            var pilotRepo        = new PilotRepo(AccountContextProvider, Logger, null);
            var keyRepo          = new KeyInfoRepo(Logger, AccountContextProvider);

            long keyid1 = await keyRepo.AddKey(userid, 1, "");

            long keyid2 = await keyRepo.AddKey(userid, 2, "");

            // stage 1 - skills firstly seen - no notification expected
            var userData = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId     = 1,
                        KeyInfoId = keyid1,
                        Name      = "Pilot1",
                        Skills    = new Skill[] { new Skill()
                                                  {
                                                      SkillName = "skill", Level = 1
                                                  }, new Skill()
                                                  {
                                                      SkillName = "skill", Level = 2
                                                  } }.ToList(),
                    },
                    new Pilot()
                    {
                        EveId     = 2,
                        KeyInfoId = keyid2,
                        Name      = "Pilot2",
                        Skills    = new Skill[] { new Skill()
                                                  {
                                                      SkillName = "skill", Level = 1
                                                  }, new Skill()
                                                  {
                                                      SkillName = "skill", Level = 2
                                                  } }.ToList(),
                    },
                    new Pilot()
                    {
                        EveId     = 3,
                        KeyInfoId = keyid2,
                        Name      = "Pilot3",
                        Skills    = new Skill[] { new Skill()
                                                  {
                                                      SkillName = "skilla", Level = 1
                                                  }, new Skill()
                                                  {
                                                      SkillName = "skilla", Level = 2
                                                  } }.ToList(),
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new List <Job>(),
            };

            await pilotRepo.Update(userid, userData);

            await skillRepo.Update(userid, userData);

            var skills = await skillRepo.GetForPilot(userData.Pilots[0].PilotId);

            Assert.AreEqual(2, skills.Count);

            await pilotRepo.DeleteByKey(keyid2);

            skills = await skillRepo.GetForPilot(userData.Pilots[0].PilotId);

            Assert.AreEqual(2, skills.Count);

            using (var ctx = AccountContextProvider.Context)
            {
                var c = ctx.Skills.Count(p => p.PilotId == userData.Pilots[1].PilotId);
                Assert.AreEqual(0, c);
                c = ctx.Skills.Count(p => p.PilotId == userData.Pilots[2].PilotId);
                Assert.AreEqual(0, c);
            }
        }
Ejemplo n.º 20
0
        public async Task SkillsNotificationLevelUp()
        {
            var accrepo = AccountRepo;
            var skey    = await accrepo.RegisterUser("*****@*****.**", "123");

            var userid = await accrepo.CheckSession(skey);

            var notificationRepo = new NotificationRepo(AccountContextProvider, Logger);
            var skillRepo        = new SkillRepo(AccountContextProvider, Logger, notificationRepo);
            var pilotRepo        = new PilotRepo(AccountContextProvider, Logger, null);

            // stage 1 - skills firstly seen - no notification expected
            var userData = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId     = 1,
                        KeyInfoId = 1,
                        Name      = "Pilot1",
                        Skills    = new Skill[] { new Skill()
                                                  {
                                                      SkillName = "skilla", Level = 1
                                                  }, new Skill()
                                                  {
                                                      SkillName = "skillb", Level = 2
                                                  }, new Skill()
                                                  {
                                                      SkillName = "skill ", Level = 3
                                                  } }.ToList(),
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new List <Job>(),
            };

            await pilotRepo.Update(userid, userData);

            await skillRepo.Update(userid, userData);

            var skills = await skillRepo.GetForPilot(userData.Pilots[0].PilotId);

            Assert.AreEqual(3, skills.Count);

            var notifications = await notificationRepo.GetAll(userid);

            Assert.AreEqual(0, notifications.Count());

            // stage 2 - level up
            var userData2 = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId     = 1,
                        KeyInfoId = 1,
                        Name      = "Pilot1",
                        Skills    = new Skill[] { new Skill()
                                                  {
                                                      SkillName = "skilla", Level = 1
                                                  }, new Skill()
                                                  {
                                                      SkillName = "skillb", Level = 2
                                                  }, new Skill()
                                                  {
                                                      SkillName = "skill ", Level = 4
                                                  } }.ToList(),
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new List <Job>(),
            };

            await pilotRepo.Update(userid, userData2);

            await skillRepo.Update(userid, userData2);

            skills = await skillRepo.GetForPilot(userData.Pilots[0].PilotId);

            Assert.AreEqual(3, skills.Count);

            notifications = await notificationRepo.GetAll(userid);

            Assert.AreEqual(1, notifications.Count);
            var n = notifications.First(x => x.Message2.Contains("skill  4"));

            Assert.AreEqual("Pilot1", n.Message);
            Assert.AreEqual("skill  4 trained", n.Message2);
            await notificationRepo.Remove(n.NotificationId);
        }
Ejemplo n.º 21
0
        public async Task PilotDeleteByKey()
        {
            var accrepo = AccountRepo;
            var skey    = await accrepo.RegisterUser("*****@*****.**", "123");

            var userid = await accrepo.CheckSession(skey);

            var notificationRepo = new NotificationRepo(AccountContextProvider, Logger);
            var skillRepo        = new SkillRepo(AccountContextProvider, Logger, notificationRepo);
            var repo             = new PilotRepo(AccountContextProvider, Logger, null);
            var keyRepo          = new KeyInfoRepo(Logger, AccountContextProvider);

            long keyid1 = await keyRepo.AddKey(userid, 1, "");

            long keyid2 = await keyRepo.AddKey(userid, 2, "");

            // stage 1
            var userData = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId     = 1,
                        KeyInfoId = keyid1,
                        Name      = "Pilot1",
                        Skills    = new List <Skill>()
                    },
                    new Pilot()
                    {
                        EveId     = 2,
                        KeyInfoId = keyid2,
                        Name      = "Pilot2",
                        Skills    = new List <Skill>()
                    },
                    new Pilot()
                    {
                        EveId     = 3,
                        KeyInfoId = keyid2,
                        Name      = "Pilot3",
                        Skills    = new List <Skill>()
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new List <Job>(),
            };

            await repo.Update(userid, userData);

            var pilots = await repo.GetAll(userid);

            Assert.AreEqual(3, pilots.Count);

            await repo.DeleteByKey(keyid2);

            pilots = await repo.GetAll(userid);

            Assert.AreEqual(1, pilots.Count);
            Assert.AreEqual("Pilot1", pilots.First().Name);

            // delete using non existing key
            await repo.DeleteByKey(keyid1 + keyid2 + 1);

            pilots = await repo.GetAll(userid);

            Assert.AreEqual(1, pilots.Count);
        }
Ejemplo n.º 22
0
 public List <Notification> GetNotificationsFromTime(DateTime startDate)
 {
     return(NotificationRepo.Query(a => startDate <= a.EndDate).OrderByDescending(a => a.InsertDate).ToList());
 }
Ejemplo n.º 23
0
        public async Task UpdatePilotsAndCorporations2()
        {
            var accrepo = AccountRepo;
            var skey    = await accrepo.RegisterUser("*****@*****.**", "123");

            var userid = await accrepo.CheckSession(skey);

            var repo = new CorporationRepo(AccountContextProvider, Logger, null);

            var notificationRepo = new NotificationRepo(AccountContextProvider, Logger);
            var skillRepo        = new SkillRepo(AccountContextProvider, Logger, notificationRepo);
            var pilotrepo        = new PilotRepo(AccountContextProvider, Logger, null);
            var corporepo        = new CorporationRepo(AccountContextProvider, Logger, null);

            // stage 1
            var userData = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId     = 1,
                        KeyInfoId = 1,
                        Name      = "Pilot1",
                        Skills    = new List <Skill>()
                    }
                }.ToList(),
                Corporations = new Corporation[]
                {
                    new Corporation()
                    {
                        EveId = 1, Name = "Corpo1", KeyInfoId = 2
                    }
                }.ToList(),
                Jobs = new List <Job>(),
            };

            await pilotrepo.Update(userid, userData);

            await corporepo.Update(userid, userData);

            var pilots = await pilotrepo.GetAll(userid);

            Assert.AreEqual(1, pilots.Count);
            Assert.AreEqual("Pilot1", pilots.First().Name);

            var corporations = await corporepo.GetAll(userid);

            Assert.AreEqual(1, corporations.Count);
            Assert.AreEqual("Corpo1", corporations.First().Name);

            // stage 2
            var userData2 = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                }.ToList(),
                Corporations = new Corporation[]
                {
                }.ToList(),
                Jobs = new List <Job>(),
            };

            await pilotrepo.Update(userid, userData2);

            await corporepo.Update(userid, userData2);

            pilots = await pilotrepo.GetAll(userid);

            Assert.AreEqual(0, pilots.Count);
            corporations = await corporepo.GetAll(userid);

            Assert.AreEqual(0, corporations.Count);

            // No notifications expected
            var notifications = await notificationRepo.GetAll(userid);

            Assert.AreEqual(0, notifications.Count);
        }
Ejemplo n.º 24
0
 public List <Notification> GetNotificationsByTimePeriod(DateTime startDate, DateTime endDate)
 {
     return(NotificationRepo.Query(a => startDate >= a.StartDate && startDate <= a.EndDate || a.EndDate >= a.StartDate && endDate <= a.EndDate).ToList());
 }
Ejemplo n.º 25
0
        public async Task UpdatePilots1()
        {
            var accrepo = AccountRepo;
            var skey    = await accrepo.RegisterUser("*****@*****.**", "123");

            var userid = await accrepo.CheckSession(skey);

            var notificationRepo = new NotificationRepo(AccountContextProvider, Logger);
            var skillRepo        = new SkillRepo(AccountContextProvider, Logger, notificationRepo);
            var repo             = new PilotRepo(AccountContextProvider, Logger, null);


            // stage 1
            var userData = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId     = 1,
                        KeyInfoId = 2,
                        Name      = "Pilot1",
                        Skills    = new List <Skill>()
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new List <Job>(),
            };

            await repo.Update(userid, userData);

            Assert.AreNotEqual(0, userData.Pilots[0].PilotId);

            var pilots = await repo.GetAll(userid);

            Assert.AreEqual(1, pilots.Count);
            Assert.AreEqual("Pilot1", pilots.First().Name);

            // stage 2
            var userData2 = new UserDataDto()
            {
                Pilots = new Pilot[]
                {
                    new Pilot()
                    {
                        EveId     = 2,
                        KeyInfoId = 3,
                        Name      = "Pilot2",
                        Skills    = new List <Skill>()
                    },
                    new Pilot()
                    {
                        EveId     = 3,
                        KeyInfoId = 3,
                        Name      = "Pilot3",
                        Skills    = new List <Skill>()
                    }
                }.ToList(),
                Corporations = new List <Corporation>(),
                Jobs         = new List <Job>(),
            };

            await repo.Update(userid, userData2);

            Assert.AreNotEqual(0, userData2.Pilots[0].PilotId);
            Assert.AreNotEqual(0, userData2.Pilots[1].PilotId);
            Assert.AreNotEqual(userData2.Pilots[0].PilotId, userData2.Pilots[1].PilotId);

            pilots = await repo.GetAll(userid);

            Assert.AreEqual(2, pilots.Count);
            Assert.AreEqual("Pilot2", pilots.First(x => x.Name == "Pilot2").Name);
            Assert.AreEqual("Pilot3", pilots.First(x => x.Name == "Pilot3").Name);

            // No notifications expected
            var notifications = await notificationRepo.GetAll(userid);

            Assert.AreEqual(0, notifications.Count);
        }
 public IQueryable <Notification> GetAllNotifications()
 {
     return(NotificationRepo.Query());
 }