Files
myoffice/MyOffice.Data.Repositories/Account/IAccountMotionRepository.cs
T
2023-06-17 14:16:09 +03:00

8 lines
159 B
C#

namespace MyOffice.Data.Repositories.Account;
using Models.Accounts;
public interface IAccountMotionRepository
{
bool Add(AccountMotion accountMotion);
}