forked from AcaMate/AcaMate_API
12 lines
263 B
C#
12 lines
263 B
C#
using Back.Program.Models.Entities;
|
|
|
|
namespace Back.Program.Repositories.V1.Interfaces;
|
|
|
|
public interface ILogRepository
|
|
{
|
|
Task<bool> SaveLogUser(LogUser log);
|
|
Task<bool> SaveLogProject(LogProject log);
|
|
Task<bool> SaveLogPush(LogPush log);
|
|
|
|
|
|
} |