/****************************************************************************
         * Created By :  Saddam
         * Created For : Service for Update UpdatePermissionInboundCopyRightHolderMaster
         *****************************************************************************************/
        public void UpdatePermissionInboundCopyRightHolderMaster(PermissionInboundCopyRightHolderMaster PermissionInboundCopyRightHolderMaster)
        {
            PermissionInboundCopyRightHolderMaster.ModifiedDate = DateTime.Now;

            PermissionInboundCopyRightHolderMaster.DeactivateBy   = null;
            PermissionInboundCopyRightHolderMaster.DeactivateDate = null;
            _PermissionInboundCopyRightHolderMaster.Update(PermissionInboundCopyRightHolderMaster);
        }
        /****************************************************************************
         * Created By :  Saddam
         * Created For : Service for Insert InsertPermissionInboundCopyRightHolderMaster
         *****************************************************************************************/
        public void InsertPermissionInboundCopyRightHolderMaster(PermissionInboundCopyRightHolderMaster PermissionInboundCopyRightHolderMaster)
        {
            PermissionInboundCopyRightHolderMaster.Deactivate     = "N";
            PermissionInboundCopyRightHolderMaster.EntryDate      = DateTime.Now;
            PermissionInboundCopyRightHolderMaster.ModifiedBy     = null;
            PermissionInboundCopyRightHolderMaster.ModifiedDate   = null;
            PermissionInboundCopyRightHolderMaster.DeactivateBy   = null;
            PermissionInboundCopyRightHolderMaster.DeactivateDate = null;

            _PermissionInboundCopyRightHolderMaster.Insert(PermissionInboundCopyRightHolderMaster);
        }
 /****************************************************************************
  *    Created By :  Dheeraj Kumar Sharma
  *    Created For : function is usaed for inserting copyright data into the dump table of copyright holder
  *****************************************************************************************/
 public void insertintoPermissionInboundCopyRightHolderMasterDump(PermissionInboundCopyRightHolderMaster Obj)
 {
     _PermissionInboundCopyRightHolderMaster.Insert(Obj);
 }