8 lines
159 B
C#
8 lines
159 B
C#
namespace MyOffice.Data.Repositories.Account;
|
|
|
|
using Models.Accounts;
|
|
|
|
public interface IAccountMotionRepository
|
|
{
|
|
bool Add(AccountMotion accountMotion);
|
|
} |