20 lines
497 B
C#
20 lines
497 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.ServiceModel;
|
|||
|
using System.Data.SqlClient;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
[ServiceContract]
|
|||
|
public interface IAdvanceBI
|
|||
|
{
|
|||
|
[OperationContract]
|
|||
|
void Insert(AdvanceBO advance);
|
|||
|
[OperationContract]
|
|||
|
List<AdvanceDisplayBO> GetAdvances(DateTime fromDate, DateTime toDate, bool all);
|
|||
|
[OperationContract]
|
|||
|
void Adjust(Guid advanceID, Guid userID);
|
|||
|
}
|
|||
|
}
|