Beispiel #1
0
        public Post[] GetPostList(int offSet, int loadCount, bool withUsers, bool withComments)
        {
            DataAccesController Dac = new DataAccesController();

            Post[] MyList = Dac.GetPostList(offSet, loadCount, withUsers, withComments).ToArray();
            return(MyList);
        }
Beispiel #2
0
 public SolvrService(bool useMockDB = false)
 {
     dbCtr = new DataAccesController(useMockDB);
 }