using DTO; using System; using System.Collections.Generic; using System.Text; using zhengcaioa.Models; namespace IServices { public interface ISimService { ResultEntity Save(SimBind sim); SimBindView Get(string id); ResultDataEntity SearchByPaging(SimBindDTOSearch searchEntity); ResultEntity UnBind(string ids,string user); List GetBindSim(); ResultEntity SaveCost(SimCost md); SimCost GetSimCost(int id); ResultDataEntity SearchSimCostByPage(SimCostDTOSearch searchEntity); } }