public static ImplementsBaseModel CreateFullBaseModel()
 {
     var model = new ImplementsBaseModel();
       model.AnotherInt = 20;
       model.AnotherString = "everything";
       model.AnotherList = new List<string>();
       model.AnotherList.Add("thisString");
       model.AnotherList.Add("thatString");
       model.AnotherClass = new DummyClass();
       model.AnotherClass.DummyString = "justAnotherString";
       return model;
 }
        public static ImplementsBaseModel CreateFullBaseModel()
        {
            var model = new ImplementsBaseModel();

            model.AnotherInt    = 20;
            model.AnotherString = "everything";
            model.AnotherList   = new List <string>();
            model.AnotherList.Add("thisString");
            model.AnotherList.Add("thatString");
            model.AnotherClass             = new DummyClass();
            model.AnotherClass.DummyString = "justAnotherString";
            return(model);
        }