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<SimBindView> SearchByPaging(SimBindDTOSearch searchEntity);
|
|
ResultEntity UnBind(string ids,string user);
|
|
List<SimBindView> GetBindSim();
|
|
ResultEntity SaveCost(SimCost md);
|
|
SimCost GetSimCost(int id);
|
|
ResultDataEntity<SimCostView> SearchSimCostByPage(SimCostDTOSearch searchEntity);
|
}
|
}
|