public ActionResult Index() { ViewBag.Title = "Home MooCare"; int quantityCowsWONotify = 0; int quantityCowsWNotify = 0; int quantityNotifyRead = 0; int quantityNotifyNotRead = 0; List <Cow> cowsWithNotify = interfaceService.GetCowsWithNotification(); List <Cow> cows = interfaceService.GetCowsByStatus(false); quantityCowsWNotify = cowsWithNotify.Count(); quantityCowsWONotify = cows.Count() - quantityCowsWNotify; List <Notification> notifications = interfaceService.GetAllNotifications(); quantityNotifyRead = notifications.Where(n => n.read).Count(); quantityNotifyNotRead = notifications.Where(n => n.read == false).Count(); DTO_Dashboard dashboard = new DTO_Dashboard { quantityCowsWithNotify = quantityCowsWNotify, quantityCowsWithoutNotify = quantityCowsWONotify, quantityNotifyRead = quantityNotifyRead, quantityNotifyNotRead = quantityNotifyNotRead }; return(View(dashboard)); }
public ActionResult Index() { List <Cow> cows = interfaceService.GetCowsByStatus(false); return(View(cows)); }