11 lines
260 B
C#
11 lines
260 B
C#
namespace MyOffice.Data.Repositories.Account;
|
|
|
|
using Models.Accounts;
|
|
|
|
public class AccountMotionRepository : AppRepository<AccountMotion>, IAccountMotionRepository
|
|
{
|
|
public bool Add(AccountMotion accountMotion)
|
|
{
|
|
return AddBase(accountMotion) > 0;
|
|
}
|
|
} |