示例#1
0
 public void UpdateStatus(DTO.LABURNUM.COM.AttendanceClass6Model model)
 {
     if (new FrontEndApi.ApiClientApi().IsClientValid(model.ApiClientModel.UserName, model.ApiClientModel.Password))
     {
         new FrontEndApi.AttendanceClass6Api().UpdateIsActive(model);
     }
 }
示例#2
0
 public long Add(DTO.LABURNUM.COM.AttendanceClass6Model model)
 {
     if (new FrontEndApi.ApiClientApi().IsClientValid(model.ApiClientModel.UserName, model.ApiClientModel.Password))
     {
         return(new FrontEndApi.AttendanceClass6Api().Add(model));
     }
     else
     {
         return(-1);
     }
 }
示例#3
0
        public void UpdateIsActive(DTO.LABURNUM.COM.AttendanceClass6Model model)
        {
            model.AttendanceClass6Id.TryValidate();
            IQueryable <API.LABURNUM.COM.AttendanceClass6> iQuery             = this._laburnum.AttendanceClass6.Where(x => x.AttendanceClass6Id == model.AttendanceClass6Id && x.IsActive == true);
            List <API.LABURNUM.COM.AttendanceClass6>       dbAttendanceClass6 = iQuery.ToList();

            if (dbAttendanceClass6.Count == 0)
            {
                throw new Exception(API.LABURNUM.COM.Component.Constants.ERRORMESSAGES.NO_RECORD_FOUND);
            }
            if (dbAttendanceClass6.Count > 1)
            {
                throw new Exception(API.LABURNUM.COM.Component.Constants.ERRORMESSAGES.MORE_THAN_ONE_RECORDFOUND);
            }
            dbAttendanceClass6[0].IsActive    = model.IsActive;
            dbAttendanceClass6[0].LastUpdated = new Component.Utility().GetISTDateTime();
            this._laburnum.SaveChanges();
        }
示例#4
0
 private long AddAttendanceClass6(DTO.LABURNUM.COM.AttendanceClass6Model model)
 {
     API.LABURNUM.COM.AttendanceClass6 apiAClass1 = new AttendanceClass6()
     {
         StudentId             = model.StudentId,
         ClassId               = model.ClassId,
         SectionId             = model.SectionId,
         MorningAttendanceDate = model.MorningAttendanceDate,
         IsPresentAfterLuch    = model.IsPresentAfterLuch,
         IsPresentInMorning    = model.IsPresentInMorning,
         CreatedOn             = new Component.Utility().GetISTDateTime(),
         IsActive              = true,
         FacultyId             = model.FacultyId
     };
     this._laburnum.AttendanceClass6.Add(apiAClass1);
     this._laburnum.SaveChanges();
     return(apiAClass1.AttendanceClass6Id);
 }
示例#5
0
 private DTO.LABURNUM.COM.AttendanceClass6Model MapCore(API.LABURNUM.COM.AttendanceClass6 apiclass)
 {
     DTO.LABURNUM.COM.AttendanceClass6Model dtoClass = new DTO.LABURNUM.COM.AttendanceClass6Model()
     {
         AttendanceClass6Id    = apiclass.AttendanceClass6Id,
         ClassId               = apiclass.ClassId,
         SectionId             = apiclass.SectionId,
         StudentId             = apiclass.StudentId,
         MorningAttendanceDate = apiclass.MorningAttendanceDate,
         LunchAttendanceDate   = apiclass.LunchAttendanceDate.GetValueOrDefault().Year != 0001 ? apiclass.LunchAttendanceDate : null,
         IsPresentAfterLuch    = apiclass.IsPresentAfterLuch,
         IsPresentInMorning    = apiclass.IsPresentInMorning,
         CreatedOn             = apiclass.CreatedOn,
         IsActive              = apiclass.IsActive,
         LastUpdated           = apiclass.LastUpdated,
         StudentName           = apiclass.Student.FirstName + " " + apiclass.Student.MiddleName + " " + apiclass.Student.LastName,
         FatherName            = apiclass.Student.FatherName,
         AttendanceId          = apiclass.AttendanceClass6Id,
     };
     return(dtoClass);
 }
示例#6
0
        public List <API.LABURNUM.COM.AttendanceClass6> GetAttendanceClass6ByAdvanceSearch(DTO.LABURNUM.COM.AttendanceClass6Model model)
        {
            IQueryable <API.LABURNUM.COM.AttendanceClass6> iQuery = null;

            if (model.AttendanceClass6Id > 0)
            {
                iQuery = this._laburnum.AttendanceClass6.Where(x => x.AttendanceClass6Id == model.AttendanceClass6Id && x.IsActive == true);
            }
            //Search By Class Id.
            if (iQuery != null)
            {
                if (model.ClassId > 0)
                {
                    iQuery = iQuery.Where(x => x.ClassId == model.ClassId && x.IsActive == true);
                }
            }
            else
            {
                if (model.ClassId > 0)
                {
                    iQuery = this._laburnum.AttendanceClass6.Where(x => x.ClassId == model.ClassId && x.IsActive == true);
                }
            }
            //Search By Section Id.
            if (iQuery != null)
            {
                if (model.SectionId > 0)
                {
                    iQuery = iQuery.Where(x => x.SectionId == model.SectionId && x.IsActive == true);
                }
            }
            else
            {
                if (model.SectionId > 0)
                {
                    iQuery = this._laburnum.AttendanceClass6.Where(x => x.SectionId == model.SectionId && x.IsActive == true);
                }
            }
            //Search By Section Id.
            if (iQuery != null)
            {
                if (model.SectionId > 0)
                {
                    iQuery = iQuery.Where(x => x.SectionId == model.SectionId && x.IsActive == true);
                }
            }
            else
            {
                if (model.SectionId > 0)
                {
                    iQuery = this._laburnum.AttendanceClass6.Where(x => x.SectionId == model.SectionId && x.IsActive == true);
                }
            }
            //Search By Student Id.
            if (iQuery != null)
            {
                if (model.StudentId > 0)
                {
                    iQuery = iQuery.Where(x => x.StudentId == model.StudentId && x.IsActive == true);
                }
            }
            else
            {
                if (model.StudentId > 0)
                {
                    iQuery = this._laburnum.AttendanceClass6.Where(x => x.StudentId == model.StudentId && x.IsActive == true);
                }
            }
            //Search By IsPresentInMorning.
            if (iQuery != null)
            {
                if (model.IsPresentInMorning)
                {
                    iQuery = iQuery.Where(x => x.IsPresentInMorning == model.IsPresentInMorning && x.IsActive == true);
                }
            }
            else
            {
                if (model.IsPresentInMorning)
                {
                    iQuery = this._laburnum.AttendanceClass6.Where(x => x.IsPresentInMorning == model.IsPresentInMorning && x.IsActive == true);
                }
            }
            //Search By IsPresentAfterLuch.
            if (iQuery != null)
            {
                if (model.IsPresentAfterLuch)
                {
                    iQuery = iQuery.Where(x => x.IsPresentAfterLuch == model.IsPresentAfterLuch && x.IsActive == true);
                }
            }
            else
            {
                if (model.IsPresentAfterLuch)
                {
                    iQuery = this._laburnum.AttendanceClass6.Where(x => x.IsPresentAfterLuch == model.IsPresentAfterLuch && x.IsActive == true);
                }
            }
            //Search By Date Range.
            if (iQuery != null)
            {
                if (model.StartDate.Year != 0001)
                {
                    model.StartDate = new Component.Utility().GetDate(model.StartDate);
                }
                if (model.EndDate.Year != 0001)
                {
                    model.EndDate = new Component.Utility().GetDate(model.EndDate).AddDays(1).AddSeconds(-1);
                }
                if (model.EndDate.Year == 0001)
                {
                    model.EndDate = model.StartDate.AddDays(1).AddSeconds(-1);
                }

                if (model.StartDate.Year != 0001)
                {
                    iQuery = iQuery.Where(x => x.CreatedOn >= model.StartDate && x.CreatedOn <= model.EndDate && x.IsActive == true);
                }
            }
            else
            {
                if (model.StartDate.Year != 0001)
                {
                    model.StartDate = new Component.Utility().GetDate(model.StartDate);
                }
                if (model.EndDate.Year != 0001)
                {
                    model.EndDate = new Component.Utility().GetDate(model.EndDate).AddDays(1).AddSeconds(-1);
                }
                if (model.EndDate.Year == 0001)
                {
                    model.EndDate = model.StartDate.AddDays(1).AddSeconds(-1);
                }

                if (model.StartDate.Year != 0001)
                {
                    iQuery = this._laburnum.AttendanceClass6.Where(x => x.CreatedOn >= model.StartDate && x.CreatedOn <= model.EndDate && x.IsActive == true);
                }
            }

            List <API.LABURNUM.COM.AttendanceClass6> dbAttendanceClass6 = iQuery.ToList();

            return(dbAttendanceClass6);
        }
示例#7
0
 public long Add(DTO.LABURNUM.COM.AttendanceClass6Model model)
 {
     return(AddValidation(model));
 }
示例#8
0
 private long AddValidation(DTO.LABURNUM.COM.AttendanceClass6Model model)
 {
     model.TryValidate();
     return(AddAttendanceClass6(model));
 }
示例#9
0
 public static void TryValidate(this DTO.LABURNUM.COM.AttendanceClass6Model item)
 {
     item.ClassId.TryValidate();
     item.SectionId.TryValidate();
     item.StudentId.TryValidate();
 }
示例#10
0
 public List <DTO.LABURNUM.COM.AttendanceClass6Model> SearchAttendanceClass6ByAdvanceSearch(DTO.LABURNUM.COM.AttendanceClass6Model model)
 {
     if (new FrontEndApi.ApiClientApi().IsClientValid(model.ApiClientModel.UserName, model.ApiClientModel.Password))
     {
         return(new AttendanceClass6Helper(new FrontEndApi.AttendanceClass6Api().GetAttendanceClass6ByAdvanceSearch(model)).Map());
     }
     else
     {
         return(null);
     }
 }