Example #1
0
        public ActionResult Index()
        {
            FilterSalary data = new FilterSalary();
            List <EmployeeCustomModel> employees = new List <EmployeeCustomModel>();

            data.employees = employees;
            return(View(data));
        }
Example #2
0
        public ActionResult Index(FilterSalary collection)
        {
            List <Employee> data = db.Employee.Where(m => m.DOB.Year > collection.StartDate.Year && m.DOB.Year < collection.EndDate.Year).ToList();

            List <EmployeeCustomModel> employees = new List <EmployeeCustomModel>();

            if (data != null && data.Count > 0)
            {
                foreach (var item in data)
                {
                    EmployeeCustomModel newmodel = new EmployeeCustomModel();
                    newmodel.ID         = item.ID;
                    newmodel.Department = item.Department;
                    newmodel.Name       = item.Name;
                    newmodel.DOB        = item.DOB;
                    newmodel.Age        = employeeService.CalculateYourAge(item.DOB);
                    employees.Add(newmodel);
                }
            }
            string averageSalary = "";

            collection.employees = employees;

            List <int> idListint = new List <int>();

            if (data != null && data.Count > 0)
            {
                foreach (var item in data)
                {
                    if (item != null)
                    {
                        var Id = item.ID;
                        idListint.Add(Id);
                    }
                }
            }

            List <int> DistinctIds = new List <int>();

            if (idListint != null && idListint.Count > 0)
            {
                DistinctIds = idListint.Distinct().ToList();
            }

            if (DistinctIds != null && DistinctIds.Count > 0)
            {
                int i = 0;
                foreach (var item in DistinctIds)
                {
                    i = i + 1;
                    var     dataselect = db.EmployeeSalary.Where(m => m.EmpId == item).ToList();
                    decimal count      = 0;
                    if (dataselect != null && dataselect.Count > 0)
                    {
                        foreach (var inneritem in dataselect)
                        {
                            count = count + Convert.ToDecimal(inneritem.Salary);
                        }
                    }
                    var name = db.Employee.Where(m => m.ID == item).Select(m => m.Name).FirstOrDefault();
                    if (count == 0)
                    {
                        averageSalary = averageSalary + " " + name + ":-No salary ";
                    }
                    else if (count > 0)
                    {
                        count         = count / i;
                        averageSalary = averageSalary + " " + name + ":-" + count;
                    }
                }
            }

            collection.averageSalary = averageSalary;
            return(View(collection));
        }