Esempio n. 1
0
        /// <summary>
        /// Method to Get List of StudentCategory
        /// </summary>
        /// <param name="argEn">StudentCategory Entity as an Input.</param>
        /// <returns>Returns List of StudentCategory</returns>
        public List <StudentCategoryEn> GetList(StudentCategoryEn argEn)
        {
            List <StudentCategoryEn> loEnList = new List <StudentCategoryEn>();
            string sqlCmd = "select * from SAS_StudentCategory";

            try
            {
                if (!FormHelp.IsBlank(sqlCmd))
                {
                    using (IDataReader loReader = _DatabaseFactory.ExecuteReader(Helper.GetDataBaseType,
                                                                                 DataBaseConnectionString, sqlCmd).CreateDataReader())
                    {
                        while (loReader.Read())
                        {
                            StudentCategoryEn loItem = LoadObject(loReader);
                            loEnList.Add(loItem);
                        }
                        loReader.Close();
                    }
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(loEnList);
        }
Esempio n. 2
0
        /// <summary>
        /// Method to Get StudentCategory Entity
        /// </summary>
        /// <param name="argEn">StudentCategory Entity is an Input.StudentCategoryCode as Input Property.</param>
        /// <returns>Returns StudentCategory Entity</returns>
        public StudentCategoryEn GetItem(StudentCategoryEn argEn)
        {
            StudentCategoryEn loItem = new StudentCategoryEn();
            string            sqlCmd = "Select * FROM SAS_StudentCategory WHERE SASC_Code = @SASC_Code";

            try
            {
                if (!FormHelp.IsBlank(sqlCmd))
                {
                    DbCommand cmd = _DatabaseFactory.GetDbCommand(Helper.GetDataBaseType, sqlCmd, DataBaseConnectionString);
                    _DatabaseFactory.AddInParameter(ref cmd, "@SASC_Code", DbType.String, argEn.StudentCategoryCode);
                    _DbParameterCollection = cmd.Parameters;

                    using (IDataReader loReader = _DatabaseFactory.GetIDataReader(Helper.GetDataBaseType, cmd,
                                                                                  DataBaseConnectionString, sqlCmd, _DbParameterCollection).CreateDataReader())
                    {
                        if (loReader != null)
                        {
                            loReader.Read();
                            loItem = LoadObject(loReader);
                        }
                        loReader.Close();
                    }
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(loItem);
        }
Esempio n. 3
0
        /// <summary>
        /// Method to Delete StudentCategory
        /// </summary>
        /// <param name="argEn">StudentCategory Entity is an Input.StudentCategoryCode as Input Property.</param>
        /// <returns>Returns Boolean</returns>
        public bool Delete(StudentCategoryEn argEn)
        {
            bool   lbRes  = false;
            int    iOut   = 0;
            string sqlCmd = "Select count(*) as cnt From   SAS_FeeCharges INNER JOIN SAS_StudentCategory ON SAS_FeeCharges.SASC_Code = SAS_StudentCategory.SASC_Code WHERE SAS_StudentCategory.SASC_Code = @SASC_Code ";

            try
            {
                if (!FormHelp.IsBlank(sqlCmd))
                {
                    DbCommand cmdSel = _DatabaseFactory.GetDbCommand(Helper.GetDataBaseType, sqlCmd, DataBaseConnectionString);
                    _DatabaseFactory.AddInParameter(ref cmdSel, "@SASC_Code", DbType.String, argEn.StudentCategoryCode);
                    _DbParameterCollection = cmdSel.Parameters;

                    using (IDataReader dr = _DatabaseFactory.GetIDataReader(Helper.GetDataBaseType, cmdSel,
                                                                            DataBaseConnectionString, sqlCmd, _DbParameterCollection).CreateDataReader())
                    {
                        if (dr.Read())
                        {
                            iOut = clsGeneric.NullToInteger(dr["cnt"]);
                        }
                        if (iOut > 0)
                        {
                            throw new Exception("Record Already In Use");
                        }
                    }
                    if (iOut == 0)
                    {
                        sqlCmd = "DELETE FROM SAS_StudentCategory WHERE SASC_Code = @SASC_Code";
                        if (!FormHelp.IsBlank(sqlCmd))
                        {
                            DbCommand cmd = _DatabaseFactory.GetDbCommand(Helper.GetDataBaseType, sqlCmd, DataBaseConnectionString);
                            _DatabaseFactory.AddInParameter(ref cmd, "@SASC_Code", DbType.String, argEn.StudentCategoryCode);
                            _DbParameterCollection = cmd.Parameters;

                            int liRowAffected = _DatabaseFactory.ExecuteNonQuery(Helper.GetDataBaseType, cmd,
                                                                                 DataBaseConnectionString, sqlCmd, _DbParameterCollection);

                            if (liRowAffected > -1)
                            {
                                lbRes = true;
                            }
                            else
                            {
                                throw new Exception("Delete Failed! No Row has been deleted...");
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(lbRes);
        }
Esempio n. 4
0
 /// <summary>
 /// Method to Get StudentCategory Entity
 /// </summary>
 /// <param name="argEn">StudentCategory Entity is an Input.StudentCategoryCode as Input Property.</param>
 /// <returns>Returns StudentCategory Entity</returns>
 public StudentCategoryEn GetItem(StudentCategoryEn argEn)
 {
     try
     {
         StudentCategoryDAL loDs = new StudentCategoryDAL();
         return(loDs.GetItem(argEn));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 5
0
 /// <summary>
 /// Method to Get List of  Active or Inactive StudentCategory
 /// </summary>
 /// <param name="argEn">StudentCategory Entity as an Input.StudentCategoryCode,Description and Status as Input Properties.</param>
 /// <returns>Returns List of StudentCategory</returns>
 public List <StudentCategoryEn> GetStudentCategoryList(StudentCategoryEn argEn)
 {
     try
     {
         StudentCategoryDAL loDs = new StudentCategoryDAL();
         return(loDs.GetStudentCategoryList(argEn));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 6
0
        /// <summary>
        /// Method to Load StudentCategory Entity
        /// </summary>
        /// <param name="argReader">IDataReader Object is an Input.</param>
        /// <returns>Returns StudentCategory Entity</returns>
        private StudentCategoryEn LoadObject(IDataReader argReader)
        {
            StudentCategoryEn loItem = new StudentCategoryEn();

            loItem.StudentCategoryCode = GetValue <string>(argReader, "SASC_Code");
            loItem.Description         = GetValue <string>(argReader, "SASC_Desc");
            loItem.Code        = GetValue <int>(argReader, "SABR_Code");
            loItem.Status      = GetValue <bool>(argReader, "SASC_Status");
            loItem.UpdatedBy   = GetValue <string>(argReader, "SASC_UpdatedBy");
            loItem.UpdatedDtTm = GetValue <string>(argReader, "SASC_UpdatedDtTm");

            return(loItem);
        }
Esempio n. 7
0
        /// <summary>
        /// Method to Get List of  Active or Inactive StudentCategory
        /// </summary>
        /// <param name="argEn">StudentCategory Entity as an Input.StudentCategoryCode,Description and Status as Input Properties.</param>
        /// <returns>Returns List of StudentCategory</returns>
        public List <StudentCategoryEn> GetStudentCategoryList(StudentCategoryEn argEn)
        {
            List <StudentCategoryEn> loEnList = new List <StudentCategoryEn>();

            argEn.StudentCategoryCode = argEn.StudentCategoryCode.Replace("*", "%");
            argEn.Description         = argEn.Description.Replace("*", "%");
            string sqlCmd = "select * from SAS_StudentCategory where SASC_Code <> '0'";

            if (argEn.StudentCategoryCode.Length != 0)
            {
                sqlCmd = sqlCmd + " and SASC_Code like '" + argEn.StudentCategoryCode + "'";
            }
            if (argEn.Description.Length != 0)
            {
                sqlCmd = sqlCmd + " and SASC_Desc like '" + argEn.Description + "'";
            }
            //if (argEn.Status == true) sqlCmd = sqlCmd + " and SASC_Status =1";
            if (argEn.Status == true)
            {
                sqlCmd = sqlCmd + " and SASC_Status = 'true'";
            }
            //if (argEn.Status == false) sqlCmd = sqlCmd + " and SASC_Status =0";
            if (argEn.Status == false)
            {
                sqlCmd = sqlCmd + " and SASC_Status = 'false'";
            }
            sqlCmd = sqlCmd + " order by SASC_Code";


            try
            {
                if (!FormHelp.IsBlank(sqlCmd))
                {
                    using (IDataReader loReader = _DatabaseFactory.ExecuteReader(Helper.GetDataBaseType,
                                                                                 DataBaseConnectionString, sqlCmd).CreateDataReader())
                    {
                        while (loReader.Read())
                        {
                            StudentCategoryEn loItem = LoadObject(loReader);
                            loEnList.Add(loItem);
                        }
                        loReader.Close();
                    }
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(loEnList);
        }
Esempio n. 8
0
        /// <summary>
        /// Method to Insert StudentCategory
        /// </summary>
        /// <param name="argEn">StudentCategory Entity is an Input.</param>
        /// <returns>Returns Boolean</returns>
        public bool Insert(StudentCategoryEn argEn)
        {
            bool flag;

            using (TransactionScope ts = new TransactionScope())
            {
                try
                {
                    StudentCategoryDAL loDs = new StudentCategoryDAL();
                    flag = loDs.Insert(argEn);
                    ts.Complete();
                }
                catch (Exception ex)
                {
                    throw ex;
                }
            }
            return(flag);
        }
Esempio n. 9
0
 /// <summary>
 /// Method to Check Validation
 /// </summary>
 /// <param name="argEn">StudentCategory Entity is as Input.</param>
 /// <returns>Returns a Boolean</returns>
 public bool IsValid(StudentCategoryEn argEn)
 {
     try
     {
         if (argEn.StudentCategoryCode == null || argEn.StudentCategoryCode.ToString().Length <= 0)
         {
             throw new Exception("StudentCategoryCode Is Required!");
         }
         if (argEn.Description == null || argEn.Description.ToString().Length <= 0)
         {
             throw new Exception("Description Is Required!");
         }
         if (argEn.UpdatedBy == null || argEn.UpdatedBy.ToString().Length <= 0)
         {
             throw new Exception("UpdatedBy Is Required!");
         }
         return(true);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 10
0
        /// <summary>
        /// Method to Update StudentCategory
        /// </summary>
        /// <param name="argEn">StudentCategory Entity is an Input.</param>
        /// <returns>Returns Boolean</returns>
        public bool Update(StudentCategoryEn argEn)
        {
            bool lbRes = false;
            int  iOut  = 0;
            StudentCategoryAccessEn  eobjSCAccess = new StudentCategoryAccessEn();
            StudentCategoryAccessDAL dobjSCAccess = new StudentCategoryAccessDAL();
            string sqlCmd = "Select count(*) as cnt From SAS_StudentCategory WHERE SASC_Code != @SASC_Code and SASC_Desc = @SASC_Desc";

            try
            {
                if (!FormHelp.IsBlank(sqlCmd))
                {
                    DbCommand cmdSel = _DatabaseFactory.GetDbCommand(Helper.GetDataBaseType, sqlCmd, DataBaseConnectionString);
                    _DatabaseFactory.AddInParameter(ref cmdSel, "@SASC_Code", DbType.String, argEn.StudentCategoryCode);
                    _DatabaseFactory.AddInParameter(ref cmdSel, "@SASC_Desc", DbType.String, argEn.Description);
                    _DbParameterCollection = cmdSel.Parameters;

                    using (IDataReader dr = _DatabaseFactory.GetIDataReader(Helper.GetDataBaseType, cmdSel,
                                                                            DataBaseConnectionString, sqlCmd, _DbParameterCollection).CreateDataReader())
                    {
                        if (dr.Read())
                        {
                            iOut = clsGeneric.NullToInteger(dr["cnt"]);
                        }
                        if (iOut > 0)
                        {
                            throw new Exception("Record Already Exist");
                        }
                    }
                    if (iOut == 0)
                    {
                        sqlCmd = "UPDATE SAS_StudentCategory SET SASC_Code = @SASC_Code, SASC_Desc = @SASC_Desc, SABR_Code = @SABR_Code, SASC_Status = @SASC_Status, SASC_UpdatedBy = @SASC_UpdatedBy, SASC_UpdatedDtTm = @SASC_UpdatedDtTm WHERE SASC_Code = @SASC_Code";
                        if (!FormHelp.IsBlank(sqlCmd))
                        {
                            DbCommand cmd = _DatabaseFactory.GetDbCommand(Helper.GetDataBaseType, sqlCmd, DataBaseConnectionString);
                            _DatabaseFactory.AddInParameter(ref cmd, "@SASC_Code", DbType.String, argEn.StudentCategoryCode);
                            _DatabaseFactory.AddInParameter(ref cmd, "@SASC_Desc", DbType.String, argEn.Description);
                            _DatabaseFactory.AddInParameter(ref cmd, "@SABR_Code", DbType.Int32, argEn.Code);
                            _DatabaseFactory.AddInParameter(ref cmd, "@SASC_Status", DbType.Boolean, argEn.Status);
                            _DatabaseFactory.AddInParameter(ref cmd, "@SASC_UpdatedBy", DbType.String, argEn.UpdatedBy);
                            _DatabaseFactory.AddInParameter(ref cmd, "@SASC_UpdatedDtTm", DbType.String, argEn.UpdatedDtTm);
                            _DbParameterCollection = cmd.Parameters;

                            int liRowAffected = _DatabaseFactory.ExecuteNonQuery(Helper.GetDataBaseType, cmd,
                                                                                 DataBaseConnectionString, sqlCmd, _DbParameterCollection);

                            if (liRowAffected > -1)
                            {
                                lbRes = true;
                            }
                            else
                            {
                                throw new Exception("Update Failed! No Row has been updated...");
                            }
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(lbRes);
        }