using DTO; using System; using System.Collections.Generic; using System.Text; namespace IServices { public interface IOrderBanciDtlService { ResultEntity save(OrderBanciDtlDTO dto); OrderBanciDtlDTO Get(string id); ResultDataEntity SearchByPaging(OrderBanciDtlDTOSearch searchEntity); ResultEntity ModifyStatus(string id, string userid); List GetList(string OrderBanciId = ""); } }