Ejemplo n.º 1
0
 /// <summary>
 /// This method will call the event resource save event invitation category method
 /// </summary>
 /// <param name="objEventInvitationCategory"></param>
 /// <returns></returns>
 public object SaveInvitationCategory(EventInvitationCategory objEventInvitationCategory)
 {
     object identity = null;
     try
     {
         EventResource objEventRes = new EventResource();
         identity = objEventRes.SaveInvitationCategory(objEventInvitationCategory);
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return identity;
 }