コード例 #1
0
        public static IStatusGeneric <Descipline> CreateDesciplineFactory(string name, string description, Guid[] projectIds)
        {
            var status     = new StatusGenericHandler <Descipline>();
            var descipline = new Descipline
            {
                Description = description,
                Name        = name
            };

            status.Result = descipline;
            return(status);
        }
コード例 #2
0
 public FormDictionaryDescipline(Descipline descipline, FormDictionary formDic)
 {
     this.Descipline     = descipline;
     this.FormDictionary = formDic;
 }