public Transactions InsertTransactions(Transactions model)
        {
            _unitOfWork.Repository <Transactions>().Add(model);
            _unitOfWork.Save();

            return(model);
        }
Exemplo n.º 2
0
        public SystemLogs InsertSystemLogs(SystemLogs model)
        {
            _unitOfWork.Repository <SystemLogs>().Add(model);
            _unitOfWork.Save();

            return(model);
        }