Exemple #1
0
        public SystemLogs InsertSystemLogs(SystemLogs model)
        {
            _unitOfWork.Repository <SystemLogs>().Add(model);
            _unitOfWork.Save();

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

            return(model);
        }