Beispiel #1
0
 public static DataTable GetPagedAgentRatio(Guid agentGuid)
 {
     Business.AgentRatio agentRatioController = new Business.AgentRatio();
     return(agentRatioController.GetPagedAgentRatio(agentGuid));
 }
Beispiel #2
0
 public static bool Delete(Guid agentGuid)
 {
     Business.AgentRatio agentRatioController = new Business.AgentRatio();
     return(agentRatioController.Delete(agentGuid));
 }
Beispiel #3
0
 public static bool Insert(Common.AgentRatio agentRatio)
 {
     Business.AgentRatio agentRatioController = new Business.AgentRatio();
     return(agentRatioController.Insert(agentRatio) != Guid.Empty ? true : false);
 }