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); List SearchSimCostByPage(string sim, int year); SimCostView GetSimCost(string userid , int bill_year, int bill_month); ResultDataEntity SearchSimCostYearByPage(SimCostDTOSearch searchEntity); } }