Esempio n. 1
0
 public int Edit(ref Mugurtham.Core.Amsam.AmsamCoreEntity objAmsamCoreEntity)
 {
     try
     {
         IUnitOfWork objIUnitOfWork = new UnitOfWork(_objLoggedInUser.ConnectionStringAppKey);
         using (objIUnitOfWork as IDisposable)
         {
             Mugurtham.DTO.Profile.Amsam objDTOAmsam = new DTO.Profile.Amsam();
             using (objDTOAmsam as IDisposable)
             {
                 AssignDTOFromEntity(ref objDTOAmsam, ref objAmsamCoreEntity);
             }
             objIUnitOfWork.RepositoryAmsam.Edit(objDTOAmsam);
             objDTOAmsam = null;
         }
         objIUnitOfWork.commit();
         objIUnitOfWork = null;
     }
     catch (Exception objEx)
     {
         Helpers.LogExceptionInFlatFile(objEx);
     }
     return(0);
 }
Esempio n. 2
0
 public int Add(ref Mugurtham.Core.Amsam.AmsamCoreEntity objAmsamCoreEntity)
 {
     try
     {
         IUnitOfWork objIUnitOfWork = new UnitOfWork();
         using (objIUnitOfWork as IDisposable)
         {
             Mugurtham.DTO.Profile.Amsam objDTOAmsam = new DTO.Profile.Amsam();
             using (objDTOAmsam as IDisposable)
             {
                 AssignDTOFromEntity(ref objDTOAmsam, ref objAmsamCoreEntity);
             }
             objIUnitOfWork.RepositoryAmsam.Add(objDTOAmsam);
             objDTOAmsam = null;
         }
         objIUnitOfWork.commit();
         objIUnitOfWork = null;
     }
     catch (Exception objEx)
     {
         Helpers.LogExceptionInFlatFile(objEx);
     }
     return 0;
 }
Esempio n. 3
0
 public int Edit(ref HoroscopeCoreEntity objHoroscopeCoreEntity)
 {
     try
     {
         IUnitOfWork objIUnitOfWork = new UnitOfWork(_objLoggedInUser.ConnectionStringAppKey);
         using (objIUnitOfWork as IDisposable)
         {
             // Save Data to Raasi
             RaasiCoreEntity objRaasiCoreEntity = new RaasiCoreEntity();
             using (objRaasiCoreEntity as IDisposable)
             {
                 objRaasiCoreEntity.ProfileID = objHoroscopeCoreEntity.ProfileID;
                 objRaasiCoreEntity.Kattam1   = objHoroscopeCoreEntity.RaasiKattam1;
                 objRaasiCoreEntity.Kattam2   = objHoroscopeCoreEntity.RaasiKattam2;
                 objRaasiCoreEntity.Kattam3   = objHoroscopeCoreEntity.RaasiKattam3;
                 objRaasiCoreEntity.Kattam4   = objHoroscopeCoreEntity.RaasiKattam4;
                 objRaasiCoreEntity.Kattam5   = objHoroscopeCoreEntity.RaasiKattam5;
                 objRaasiCoreEntity.Kattam6   = objHoroscopeCoreEntity.RaasiKattam6;
                 objRaasiCoreEntity.Kattam7   = objHoroscopeCoreEntity.RaasiKattam7;
                 objRaasiCoreEntity.Kattam8   = objHoroscopeCoreEntity.RaasiKattam8;
                 objRaasiCoreEntity.Kattam9   = objHoroscopeCoreEntity.RaasiKattam9;
                 objRaasiCoreEntity.Kattam10  = objHoroscopeCoreEntity.RaasiKattam10;
                 objRaasiCoreEntity.Kattam11  = objHoroscopeCoreEntity.RaasiKattam11;
                 objRaasiCoreEntity.Kattam12  = objHoroscopeCoreEntity.RaasiKattam12;
                 Mugurtham.DTO.Profile.Raasi objDTORaasi = new DTO.Profile.Raasi();
                 using (objDTORaasi as IDisposable)
                 {
                     RaasiCore objRaasiCore = new RaasiCore(ref _objLoggedInUser);
                     using (objRaasiCore as IDisposable)
                         objRaasiCore.AssignDTOFromEntity(ref objDTORaasi, ref objRaasiCoreEntity);
                     objRaasiCore = null;
                 }
                 objIUnitOfWork.RepositoryRaasi.Edit(objDTORaasi);
                 objDTORaasi = null;
             }
             objRaasiCoreEntity = null;
             // Save data to Amsam
             AmsamCoreEntity objAmsamCoreEntity = new AmsamCoreEntity();
             using (objAmsamCoreEntity as IDisposable)
             {
                 objAmsamCoreEntity.ProfileID = objHoroscopeCoreEntity.ProfileID;
                 objAmsamCoreEntity.Kattam1   = objHoroscopeCoreEntity.AmsamKattam1;
                 objAmsamCoreEntity.Kattam2   = objHoroscopeCoreEntity.AmsamKattam2;
                 objAmsamCoreEntity.Kattam3   = objHoroscopeCoreEntity.AmsamKattam3;
                 objAmsamCoreEntity.Kattam4   = objHoroscopeCoreEntity.AmsamKattam4;
                 objAmsamCoreEntity.Kattam5   = objHoroscopeCoreEntity.AmsamKattam5;
                 objAmsamCoreEntity.Kattam6   = objHoroscopeCoreEntity.AmsamKattam6;
                 objAmsamCoreEntity.Kattam7   = objHoroscopeCoreEntity.AmsamKattam7;
                 objAmsamCoreEntity.Kattam8   = objHoroscopeCoreEntity.AmsamKattam8;
                 objAmsamCoreEntity.Kattam9   = objHoroscopeCoreEntity.AmsamKattam9;
                 objAmsamCoreEntity.Kattam10  = objHoroscopeCoreEntity.AmsamKattam10;
                 objAmsamCoreEntity.Kattam11  = objHoroscopeCoreEntity.AmsamKattam11;
                 objAmsamCoreEntity.Kattam12  = objHoroscopeCoreEntity.AmsamKattam12;
                 Mugurtham.DTO.Profile.Amsam objDTOAmsam = new DTO.Profile.Amsam();
                 using (objDTOAmsam as IDisposable)
                 {
                     AmsamCore objAmsamCore = new AmsamCore(ref _objLoggedInUser);
                     using (objAmsamCore as IDisposable)
                         objAmsamCore.AssignDTOFromEntity(ref objDTOAmsam, ref objAmsamCoreEntity);
                     objAmsamCore = null;
                 }
                 objIUnitOfWork.RepositoryAmsam.Edit(objDTOAmsam);
                 objDTOAmsam = null;
             }
             objAmsamCoreEntity          = null;
             objHoroscopeCoreEntity.Path = GetByProfileID(objHoroscopeCoreEntity.ProfileID).Path;
             updateHoroscope(ref objHoroscopeCoreEntity);
             objIUnitOfWork.commit();
             objIUnitOfWork = null;
         }
         objHoroscopeCoreEntity = null;
     }
     catch (Exception objEx)
     {
         Helpers.LogExceptionInFlatFile(objEx);
     }
     return(0);
 }
Esempio n. 4
0
        public int Edit(ref HoroscopeCoreEntity objHoroscopeCoreEntity)
        {
            try
            {
                IUnitOfWork objIUnitOfWork = new UnitOfWork();
                using (objIUnitOfWork as IDisposable)
                {
                    // Save Data to Raasi
                    RaasiCoreEntity objRaasiCoreEntity = new RaasiCoreEntity();
                    using (objRaasiCoreEntity as IDisposable)
                    {
                        objRaasiCoreEntity.ProfileID = objHoroscopeCoreEntity.ProfileID;
                        objRaasiCoreEntity.Kattam1 = objHoroscopeCoreEntity.RaasiKattam1;
                        objRaasiCoreEntity.Kattam2 = objHoroscopeCoreEntity.RaasiKattam2;
                        objRaasiCoreEntity.Kattam3 = objHoroscopeCoreEntity.RaasiKattam3;
                        objRaasiCoreEntity.Kattam4 = objHoroscopeCoreEntity.RaasiKattam4;
                        objRaasiCoreEntity.Kattam5 = objHoroscopeCoreEntity.RaasiKattam5;
                        objRaasiCoreEntity.Kattam6 = objHoroscopeCoreEntity.RaasiKattam6;
                        objRaasiCoreEntity.Kattam7 = objHoroscopeCoreEntity.RaasiKattam7;
                        objRaasiCoreEntity.Kattam8 = objHoroscopeCoreEntity.RaasiKattam8;
                        objRaasiCoreEntity.Kattam9 = objHoroscopeCoreEntity.RaasiKattam9;
                        objRaasiCoreEntity.Kattam10 = objHoroscopeCoreEntity.RaasiKattam10;
                        objRaasiCoreEntity.Kattam11 = objHoroscopeCoreEntity.RaasiKattam11;
                        objRaasiCoreEntity.Kattam12 = objHoroscopeCoreEntity.RaasiKattam12;
                        Mugurtham.DTO.Profile.Raasi objDTORaasi = new DTO.Profile.Raasi();
                        using (objDTORaasi as IDisposable)
                        {
                            RaasiCore objRaasiCore = new RaasiCore();
                            using (objRaasiCore as IDisposable)
                                objRaasiCore.AssignDTOFromEntity(ref objDTORaasi, ref objRaasiCoreEntity);
                            objRaasiCore = null;
                        }
                        objIUnitOfWork.RepositoryRaasi.Edit(objDTORaasi);
                        objDTORaasi = null;
                    }
                    objRaasiCoreEntity = null;
                    // Save data to Amsam
                    AmsamCoreEntity objAmsamCoreEntity = new AmsamCoreEntity();
                    using (objAmsamCoreEntity as IDisposable)
                    {
                        objAmsamCoreEntity.ProfileID = objHoroscopeCoreEntity.ProfileID;
                        objAmsamCoreEntity.Kattam1 = objHoroscopeCoreEntity.AmsamKattam1;
                        objAmsamCoreEntity.Kattam2 = objHoroscopeCoreEntity.AmsamKattam2;
                        objAmsamCoreEntity.Kattam3 = objHoroscopeCoreEntity.AmsamKattam3;
                        objAmsamCoreEntity.Kattam4 = objHoroscopeCoreEntity.AmsamKattam4;
                        objAmsamCoreEntity.Kattam5 = objHoroscopeCoreEntity.AmsamKattam5;
                        objAmsamCoreEntity.Kattam6 = objHoroscopeCoreEntity.AmsamKattam6;
                        objAmsamCoreEntity.Kattam7 = objHoroscopeCoreEntity.AmsamKattam7;
                        objAmsamCoreEntity.Kattam8 = objHoroscopeCoreEntity.AmsamKattam8;
                        objAmsamCoreEntity.Kattam9 = objHoroscopeCoreEntity.AmsamKattam9;
                        objAmsamCoreEntity.Kattam10 = objHoroscopeCoreEntity.AmsamKattam10;
                        objAmsamCoreEntity.Kattam11 = objHoroscopeCoreEntity.AmsamKattam11;
                        objAmsamCoreEntity.Kattam12 = objHoroscopeCoreEntity.AmsamKattam12;
                        Mugurtham.DTO.Profile.Amsam objDTOAmsam = new DTO.Profile.Amsam();
                        using (objDTOAmsam as IDisposable)
                        {
                            AmsamCore objAmsamCore = new AmsamCore();
                            using (objAmsamCore as IDisposable)
                                objAmsamCore.AssignDTOFromEntity(ref objDTOAmsam, ref objAmsamCoreEntity);
                            objAmsamCore = null;
                        }
                        objIUnitOfWork.RepositoryAmsam.Edit(objDTOAmsam);
                        objDTOAmsam = null;
                    }
                    objAmsamCoreEntity = null;
                    objHoroscopeCoreEntity.Path = GetByProfileID(objHoroscopeCoreEntity.ProfileID).Path;
                    updateHoroscope(ref objHoroscopeCoreEntity);
                    objIUnitOfWork.commit();
                    objIUnitOfWork = null;

                }
                objHoroscopeCoreEntity = null;

            }
            catch (Exception objEx)
            {
                Helpers.LogExceptionInFlatFile(objEx);
            }
            return 0;
        }