Esempio n. 1
0
 public ActMasterTable GetActMaster()
 {
     ActMasterTable Dt = new ActMasterTable();
     try
     {
         Dt=IgrssAdapters.ActMasterAdapter.GetActMaster();
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(ex, "DAL"))
             throw;
     }
     return Dt;
 }
Esempio n. 2
0
        public ActMasterTable GetActDetailsById(Guid ActId)
        {
            ActMasterTable Dt = new ActMasterTable();

            try
            {
                Dt = IgrssAdapters.ActMasterAdapter.GetActMasterDetailsById(ActId);
            }
            catch (Exception ex)
            {
                if (ExceptionPolicy.HandleException(ex, "DAL"))
                {
                    throw;
                }
            }
            return(Dt);
        }