Exemple #1
0
        //Populate Grid using Excel File
        public List <MemberModel> GetMemberExcel(string FilePath, string FileName)
        {
            try
            {
                FileInfo           file = new FileInfo(FilePath);
                List <MemberModel> listMemModel;

                if (!file.Exists)
                {
                    throw new Exception("Error, file doesn't exists!");
                }
                else
                {
                    DataTable dt = new DataTable();

                    listMemModel = _dataAccess.GetMemberExcel(FilePath, FileName);
                }
                return(listMemModel);
            }
            catch (Exception ex)
            {
                MessageBox.Show("Invalid uploaded data", "OCMS", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                throw ex;
            }
        }
Exemple #2
0
        ////Populate Grid using SQL Conn
        //public List<MemberModel> GetMember()
        //{
        //    try
        //    {

        //        List<MemberModel> listMember = _dataAccess.GetMember();

        //        return listMember;

        //    }
        //    catch (Exception ex)
        //    {

        //        throw ex;
        //    }
        //}

        //Populate Grid using Excel File
        public List <MemberModel> GetMemberExcel(string FilePath, string FileName)
        {
            try
            {
                FileInfo           file = new FileInfo(FilePath);
                DataTable          dt   = new DataTable();
                List <MemberModel> listMemModel;

                if (!file.Exists)
                {
                    throw new Exception("Error, file doesn't exists!");
                }
                else
                {
                    listMemModel   = _dataAccess.GetMemberExcel(FilePath, FileName);
                    Cursor.Current = Cursors.WaitCursor;
                }

                var list = listMemModel.OrderBy(d => d.LName);
                return(list.ToList());
            }
            catch (Exception ex)
            {
                MessageBox.Show("Invalid uploaded data", "OCMS", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                throw ex;
            }
        }