Skip to content

Instantly share code, notes, and snippets.

@azaharafernandezguizan
Created December 30, 2018 17:12
Show Gist options
  • Save azaharafernandezguizan/d9ddf84b23fd47dd1a48977620de7564 to your computer and use it in GitHub Desktop.
Save azaharafernandezguizan/d9ddf84b23fd47dd1a48977620de7564 to your computer and use it in GitHub Desktop.
Example of manager interface on NetCore
using MyDBContext.Models;
using MyDTOs;
using System;
using System.Collections.Generic;
using System.Text;
namespace MyManager
{
public interface IInfoManager
{
List<RecursosInfo> getRecursos();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment