using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSSoft.Frame.Data.DAL; using ICSSoft.Frame.Data.Entity; namespace ICSSoft.Frame.Data.BLL { public class ICSAgentBLL { #region AddandEdit public static void AddandEdit(AgentLogs ItemLot, string Appconstr) { try { ICSAgentDAL.AddandEdit(ItemLot, Appconstr); } catch (Exception ex) { throw ex; } } #endregion } }