Exemplo n.º 1
0
        private void WriteScalarResponse(IEntity entity)
        {
            cw.WriteLine("[DataContract]");
            cw.BeginClass(AccessLevel.Public,
                          true,
                          NamingHelperStack.ToServiceResponseName(entity, null),
                          Const.EmptyName);

            intfh.WriteProperty(NamingHelper.ToDTOTypeName(entity, null),
                                NamingHelper.ToDTOPropertyName(entity));

            intfh.WriteProperty(NamingHelper.ClassName_CommitResult,
                                NamingHelper.PropertyName_CommitResult);

            intfh.WriteProperty("ResponseStatus", "ResponseStatus");

            oph.WriteParamClassesProperties(entity);

            cw.WriteLine();
            cw.BeginRegion("Constructors");
            cw.WriteLine("public {0}()", NamingHelperStack.ToServiceResponseName(entity, null));
            cw.BeginScope();
            cw.WriteLine("this.ResponseStatus = new ResponseStatus();");
            cw.WriteLine("this.{0} = new {0}();",
                         NamingHelper.ClassName_CommitResult,
                         NamingHelper.PropertyName_CommitResult);

            cw.EndScope();
            cw.EndRegion();

            cw.EndClass();
        }
Exemplo n.º 2
0
        protected override void ProcessEntity(IEntity entity)
        {
            if (genie.Lamp.Config.Patterns.Security != null)
            {
                cw.WriteLine("[Authenticate]");
            }
            cw.BeginClass(AccessLevel.Public,
                          true,
                          NamingHelperStack.ToServiceName(entity, null),
                          String.Format("RestServiceBase<{0}>", NamingHelperStack.ToServiceRequestName(entity, interfacesEnvironment)),
                          "IRequiresRequestContext");

            if (entity.Persistence.Persisted)
            {
                WriteOnGet(entity);
                cw.WriteLine();
                WriteOnDelete(entity);
                cw.WriteLine();
                WriteDomainCollectionToDTOCollection(entity);
                cw.WriteLine();
            }
            WriteOnPost(entity);
            cw.WriteLine();
            WriteDomainObjectToDTO(entity);
            cw.WriteLine();
            WriteDTOToDomainObject(entity);
            cw.WriteLine();

            cw.EndClass();
            cw.WriteLine();
        }
Exemplo n.º 3
0
 public static string GetRestServicePath(IEntity entity, string path)
 {
     return(String.Format("/{0}{1}",
                          NamingHelperStack.ToServiceName(entity, null),
                          String.IsNullOrEmpty(path) ? "" :
                          path.StartsWith("/") ? path : "/" + path));
 }
Exemplo n.º 4
0
        private void WriteCollectionPesponse(IEntity entity)
        {
            cw.WriteLine("[DataContract]");
            cw.BeginClass(AccessLevel.Public,
                          true,
                          NamingHelperStack.ToServiceResponseCollectionName(entity, null),
                          Const.EmptyName);

            intfh.WriteProperty(NamingHelperStack.ToDTOCollectionTypeName(entity, null),
                                NamingHelperStack.ToDTOCollectionPropertyName(entity));

            intfh.WriteProperty("ResponseStatus", "ResponseStatus");

            cw.WriteLine();
            cw.BeginRegion("Constructors");
            cw.WriteLine("public {0}()", NamingHelperStack.ToServiceResponseCollectionName(entity, null));
            cw.BeginScope();
            cw.WriteLine("this.ResponseStatus = new ResponseStatus();");
            cw.WriteLine("this.{0} = new {1}();",
                         NamingHelperStack.ToDTOCollectionPropertyName(entity),
                         NamingHelperStack.ToDTOCollectionTypeName(entity, null));
            cw.EndScope();
            cw.EndRegion();

            cw.EndClass();
        }
Exemplo n.º 5
0
 private void WriteOnDelete(IEntity entity)
 {
     cw.BeginFunction("public override object OnDelete({0} {1})",
                      NamingHelperStack.ToServiceRequestName(entity, interfacesEnvironment),
                      VarName_Request);
     cw.WriteLine("{0} {1} = new {0}();",
                  NamingHelperStack.ToServiceResponseName(entity, interfacesEnvironment),
                  VarName_Response);
     WriteInitResponse(VarName_Response);
     cw.BeginTry();
     cw.If("{0}", entity.Constraints.PrimaryId.Attributes.ToNamesString(" && ", VarName_Request + ".", " != null"));
     cw.BeginTry();
     cw.WriteLine("{0}.{1}({2});",
                  domainEnvironment.ToTypeName(entity, true),
                  DomainLayerConfig.Methods.DeleteById(entity.Constraints.PrimaryId, domainEnvironment).Name,
                  entity.Constraints.PrimaryId.Attributes.ToNamesString(", ", VarName_Request + ".", ".Value"));
     cw.EndTry();
     cw.BeginCatch("Exception e");
     cw.WriteLine("{0}.CommitResult.HasError = true;", VarName_Response);
     cw.WriteLine("{0}.CommitResult.Message = e.Message;", VarName_Response);
     cw.WriteLine("{0}.CommitResult.ExceptionString = e.ToString();", VarName_Response);
     WriteResponceError(VarName_Response, '"' + "Error deleting object" + '"', "e.ToString()");
     cw.EndCatch();
     cw.Else();
     cw.WriteLine("{0}.CommitResult.HasError = true;", VarName_Response);
     cw.WriteLine("{0}.CommitResult.Message = \"Object primary id is empty\";", VarName_Response);
     WriteResponceError(VarName_Response, '"' + "Object primary id is empty" + '"', null);
     cw.EndIf();
     cw.EndTry();
     WriteCatch(VarName_Response);
     cw.WriteLine("return {0};", VarName_Response);
     cw.EndFunction();
 }
Exemplo n.º 6
0
 private void WriteDomainCollectionToDTOCollection(IEntity entity)
 {
     cw.WriteLine("protected {0} {1}",
                  NamingHelperStack.ToDTOCollectionTypeName(entity, interfacesEnvironment),
                  ToMethodSignature_DomainCollectionToDTO(entity));
     cw.BeginScope();
     cw.WriteLine("{0} {1} = new {0}();",
                  NamingHelperStack.ToDTOCollectionTypeName(entity, interfacesEnvironment),
                  VarName_DTOCollection);
     cw.WriteLine("foreach({0} {1} in {2})",
                  domainEnvironment.ToTypeName(entity, true),
                  VarName_DomainObject,
                  VarName_DomainCollection);
     cw.BeginScope();
     cw.WriteLine("{0} {1} = new {0}();",
                  NamingHelperStack.ToDTOTypeName(entity, interfacesEnvironment),
                  VarName_DTO);
     cw.WriteLine("{0}.{1}({2}, {3});",
                  NamingHelperStack.ToServiceName(entity, null),
                  MethodName_DomainObjectToDTO,
                  VarName_DomainObject,
                  VarName_DTO);
     cw.WriteLine("{0}.Add({1});",
                  VarName_DTOCollection,
                  VarName_DTO);
     cw.EndScope();
     cw.WriteLine("return {0};", VarName_DTOCollection);
     cw.EndScope();
 }
        private void WriteOperations(IEntity entity)
        {
            OperationHelper oph = new OperationHelper(cw, interfacesEnvironment);

            foreach (IEntityOperation operation in entity.Operations)
            {
                if (operation.Access != EntityOperationAccess.Public)
                {
                    continue;
                }
                cw.BeginFunction("public " + environment.ToOperationSignature(operation, true));
                cw.WriteLine("{0} {1} = new {0}();",
                             NamingHelperStack.ToServiceRequestName(entity, interfacesEnvironment),
                             VarName_Request);
                cw.WriteLine("{0}.{1} = new {2}();",
                             VarName_Request,
                             OperationHelper.GetParamClassPropertyName(operation),
                             oph.GetParamClassName(operation, true));
                foreach (IEntityOperationParam param in operation.Params)
                {
                    cw.WriteLine("{0}.{1}.{2} = {3};",
                                 VarName_Request,
                                 OperationHelper.GetParamClassPropertyName(operation),
                                 oph.GetParamPropertyName(param),
                                 param.Name);
                }
                cw.WriteLine("{0}.{1} = this.{2};",
                             VarName_Request,
                             NamingHelper.ToDTOPropertyName(entity),
                             NamingHelper.PropertyName_AdapterDTO);

                cw.WriteLine("{0} {1} = WebClientFactory.GetJsonClient()",
                             NamingHelperStack.ToServiceResponseName(entity, interfacesEnvironment),
                             VarName_Response);
                cw.Indent++;
                cw.WriteLine(".Post<{0}>(\"{1}\", {2});",
                             NamingHelperStack.ToServiceResponseName(entity, interfacesEnvironment),
                             OperationHelper.GetRestServicePath(operation),
                             VarName_Request);
                cw.Indent--;

                cw.If("{0}.ResponseStatus.ErrorCode == \"{1}\"", VarName_Response, RestServiceHelper.ErrorCode);
                cw.WriteLine("throw new Exception({0}.ResponseStatus.Message);", VarName_Response);
                cw.EndIf();
                cw.WriteLine("this.{0} = {1}.{2};",
                             NamingHelper.PropertyName_AdapterDTO,
                             VarName_Response,
                             NamingHelper.ToDTOPropertyName(entity));


                if (operation.Params.HasReturns)
                {
                    cw.WriteLine("return {0}.{1}.{2};",
                                 VarName_Response,
                                 OperationHelper.GetParamClassPropertyName(operation),
                                 oph.GetParamPropertyName(operation.Params.Returns));
                }
                cw.EndFunction();
            }
        }
 private void WriteGetById(IEntity entity)
 {
     cw.BeginFunction("public static {0}{1} {2}",
                      entity.HasSupertype ? "new " : "",
                      NamingHelperStack.ToDTOAdapterTypeName(entity, null),
                      ServicesLayerConfig.Methods.GetById(entity.PrimaryId, environment).Signature);
     WriteBodyGetByAttributes(entity, entity.PrimaryId.Attributes);
     cw.EndFunction();
 }
Exemplo n.º 9
0
        private void WriteRequestClass(IEntity entity)
        {
            cw.WriteLine("[DataContract]");
            cw.WriteLine(RestServiceHelper.GetRestServiceSpec(entity, String.Empty));
            if (entity.Persistence.Persisted)
            {
                cw.WriteLine(RestServiceHelper.GetRestServiceSpec(entity, entity.Constraints.PrimaryId.Attributes));
                foreach (IUniqueId uid in entity.Constraints.UniqueIds)
                {
                    cw.WriteLine(RestServiceHelper.GetRestServiceSpec(entity, uid.Attributes));
                }
                foreach (IRelation r in entity.Parents)
                {
                    cw.WriteLine(RestServiceHelper.GetRestServiceSpec(entity, r.ChildAttributes));
                }

                cw.WriteLine(RestServiceHelper.GetRestServiceSpec(
                                 entity,
                                 String.Format("/{0}/{{{0}}}/{1}/{{{1}}}/{2}/{{{2}}}/{3}/{{{3}}}",
                                               NamingHelperStack.ParamName_PageNumber,
                                               NamingHelperStack.ParamName_PageSize,
                                               NamingHelperStack.ParamName_SortOrderProperty,
                                               NamingHelperStack.ParamName_SortOrderAsc)));
            }

            oph.WriteOperationsSpec(entity);

            cw.BeginClass(AccessLevel.Public,
                          true,
                          NamingHelperStack.ToServiceRequestName(entity, null),
                          Const.EmptyName);

            intfh.WriteProperties(entity.Constraints.PrimaryId.Attributes);
            foreach (IUniqueId uid in entity.Constraints.UniqueIds)
            {
                intfh.WriteProperties(uid.Attributes);
            }
            foreach (IRelation r in entity.Parents)
            {
                intfh.WriteProperties(r.ChildAttributes);
            }

            intfh.WriteProperty("string", NamingHelperStack.ParamName_Query);
            intfh.WriteProperty(NamingHelper.ClassName_ServicesQueryParams, NamingHelperStack.ParamName_QueryParams);
            intfh.WritePaginationProperties(entity);

            intfh.WriteProperty(NamingHelper.ToDTOTypeName(entity, null),
                                NamingHelper.ToDTOPropertyName(entity));

            oph.WriteParamClassesProperties(entity);
            cw.WriteLine();

            cw.EndClass();

            cw.WriteLine();
            oph.WriteParamClasses(entity);
        }
        private void WriteEntityDTOAdapter(IEntity entity)
        {
            cw.BeginClass(AccessLevel.Public,
                          true,
                          NamingHelperStack.ToDTOAdapterTypeName(entity, null),
                          entity.HasSupertype ?
                          NamingHelperStack.ToDTOAdapterTypeName(entity.Supertype, environment)
                                      :
                          entity.Persistence.Persisted ? NamingHelperStack.ClassName_PersistentObjectDTOAdapter : ClassName_DomainObjectDTOAdapter);

            cw.BeginProperty(AccessLevel.Public,
                             VirtualisationLevel.New,
                             NamingHelper.ToDTOTypeName(entity, dtoEnvironment),
                             NamingHelper.PropertyName_AdapterDTO);
            cw.WritePropertyGet("return base.{0} as {1};",
                                NamingHelper.PropertyName_AdapterDTO,
                                NamingHelper.ToDTOTypeName(entity, dtoEnvironment));
            cw.WriteLine("internal set {{ base.{0} = value; }}", NamingHelper.PropertyName_AdapterDTO);
            cw.EndProperty();

            cw.BeginRegion("Constructors");
            cw.BeginFunction("public {0}()", NamingHelperStack.ToDTOAdapterTypeName(entity, null));
            cw.WriteLine("this.{0} = new {1}();",
                         MemberName_DTO,
                         NamingHelper.ToDTOTypeName(entity, dtoEnvironment));
            cw.EndFunction();
            cw.WriteLine();

            cw.BeginFunction("public {0}({1} {2}) : base({2})",
                             NamingHelperStack.ToDTOAdapterTypeName(entity, null),
                             NamingHelper.ToDTOTypeName(entity, dtoEnvironment),
                             VarName_DTO);
            cw.EndFunction();
            cw.EndRegion();
            cw.WriteLine();

            if (entity.Persistence.Persisted)
            {
                WriteGetById(entity);
                cw.WriteLine();
                WriteGetByUid(entity);
                cw.WriteLine();
                WriteRefresh(entity);
                cw.WriteLine();
                WriteDTOPersistenceFunctions(entity);
                cw.WriteLine();
            }
            cw.BeginRegion("Operations");
            WriteOperations(entity);
            cw.EndRegion();

            ProcessAttributes(entity);
            cw.WriteLine();
            ProcessRelations(entity);

            cw.EndClass();
        }
Exemplo n.º 11
0
        public CodeGenStackServicesInterfaces(GenieBase genie)
            : base(genie)
        {
            outFileName = "ServicesInterfaces.cs";

            genie.Config.Macro.SetMacro("%ServiceRequest_Persistence%",
                                        NamingHelperStack.ToServiceRequestName(NamingHelper.ServiceName_Persistence));
            genie.Config.Macro.SetMacro("%ServiceResponse_Persistence%",
                                        NamingHelperStack.ToServiceResponseName(NamingHelper.ServiceName_Persistence));
        }
 private void WriteGetByUid(IEntity entity)
 {
     foreach (IUniqueId uid in entity.Constraints.UniqueIds)
     {
         cw.BeginFunction("public static {0} {1}",
                          NamingHelperStack.ToDTOAdapterTypeName(entity, null),
                          ServicesLayerConfig.Methods.GetByUniqueId(uid, interfacesEnvironment).Signature);
         WriteBodyGetByAttributes(entity, uid.Attributes);
         cw.EndFunction();
         cw.WriteLine();
     }
 }
        private void WriteRefresh(IEntity entity)
        {
            cw.BeginFunction("public {0}void Refresh()",
                             entity.HasSupertype ? "override " : "virtual ");
            List <string> args = new List <string>();

            foreach (IAttribute a in entity.PrimaryId.Attributes)
            {
                args.Add("this." + NamingHelper.ToDTOPropertyName(a));
            }
            cw.WriteLine("{0} o = {0}.{1};",
                         NamingHelperStack.ToDTOAdapterTypeName(entity, null),
                         ServicesLayerConfig.Methods.GetById(entity.PrimaryId, environment).Call(args.ToArray()));
            cw.WriteLine("this.{0} = o != null && o.{0} != null ? o.{0} : new {1}();",
                         NamingHelper.PropertyName_AdapterDTO,
                         NamingHelperStack.ToDTOTypeName(entity, dtoEnvironment));
            cw.EndFunction();
        }
        private void WriteDTOPersistenceFunctions(IEntity entity)
        {
            cw.BeginFunction("public override {0}.{1} Save(bool throwException = false)",
                             interfacesEnvironment.BaseNamespace,
                             NamingHelper.ClassName_CommitResult);
            cw.WriteLine("return PersistenceAction<{0}>({1}.{2}.Action.Save, throwException);",
                         NamingHelperStack.ToDTOTypeName(entity, dtoEnvironment),
                         interfacesEnvironment.BaseNamespace,
                         NamingHelper.ClassName_UnitOfWorkDTO);
            cw.EndFunction();
            cw.WriteLine();

            cw.BeginFunction("public override {0}.{1} Delete(bool throwException = false)",
                             interfacesEnvironment.BaseNamespace,
                             NamingHelper.ClassName_CommitResult);
            cw.WriteLine("return PersistenceAction<{0}>({1}.{2}.Action.Delete, throwException);",
                         NamingHelperStack.ToDTOTypeName(entity, dtoEnvironment),
                         interfacesEnvironment.BaseNamespace,
                         NamingHelper.ClassName_UnitOfWorkDTO);
            cw.EndFunction();
        }
        private void WriteBodyGetByAttributes(IEntity entity, IAttributes attributes)
        {
            cw.WriteLine("{0} {1} = WebClientFactory.GetJsonClient()",
                         NamingHelperStack.ToDTOTypeName(entity, dtoEnvironment),
                         VarName_DTO);
            cw.Indent++;
            cw.WriteLine(".Get<{0}>(String.Format(\"/{1}/{2}\", {3}))",
                         NamingHelperStack.ToServiceResponseName(entity, interfacesEnvironment),
                         NamingHelperStack.ToServiceName(entity, null),
                         cw.ToSeparatedString(attributes.ToList(),
                                              "/",
                                              delegate(object item, int count)
                                              { return(String.Format("{0}/{{{1}}}", (item as IAttribute).Name, count)); }),
                         environment.ToArguments(attributes)
                         );
            cw.WriteLine(".{0};",
                         NamingHelper.ToDTOPropertyName(entity));
            cw.Indent--;

            cw.WriteLine("return {0} == null ? null : new {1}({0});",
                         VarName_DTO,
                         NamingHelperStack.ToDTOAdapterTypeName(entity, null));
        }
Exemplo n.º 16
0
        private void WriteDTOToDomainObject(IEntity entity)
        {
            // DTO --> Domain: init domain object from DTO
            cw.WriteLine("internal static void {0}", ToMethodSignature_DTOToDomainObject(entity));
            cw.BeginScope();
            if (entity.HasSupertype)
            {
                cw.WriteLine("{0}.{1}({2}, {3});",
                             NamingHelperStack.ToServiceName(entity.Supertype, environment),
                             MethodName_DTOToDomainObject,
                             VarName_DTO,
                             VarName_DomainObject);
            }
            foreach (IAttribute a in entity.Attributes)
            {
                if (a.ProcessInRelations || !a.Persistence.Persisted)
                {
                    continue;
                }
                if (a.IsPrimaryId && entity.PrimaryId.HasGenerator)
                {
                    continue;
                }
                if (a.HasEnumerationType)
                {
                    cw.WriteLine("{0}.{1} = ({2})((int){3}.{1});",
                                 VarName_DomainObject,
                                 a.Name,
                                 domainEnvironment.ToTypeName(a, true),
                                 VarName_DTO);
                }
                else
                {
                    cw.WriteLine("{0}.{1} = {2}.{1};",
                                 VarName_DomainObject,
                                 a.Name,
                                 VarName_DTO);
                }
            }

            foreach (IRelation r in entity.Relations)
            {
                if (!r.IsParent(entity) && r.ChildNavigate)
                {
                    foreach (IRelationAttributeMatch am in r.AttributesMatch)
                    {
                        IAttribute childAttr = am.Attribute;
                        if (r.ParentSide == RelationSide.Left)
                        {
                            childAttr = am.Attribute2;
                        }

                        if (!childAttr.TypeDefinition.Required)
                        {
                            cw.If("{0}.{1} != null",
                                  VarName_DTO,
                                  NamingHelper.ToDTOPropertyName(childAttr));

                            cw.WriteLine("{0}.{1} = {2}.{3}({4}.{5}{6});",
                                         VarName_DomainObject,
                                         r.ChildName,
                                         domainEnvironment.ToTypeName(r.ParentEntity, true),
                                         DomainLayerConfig.Methods.GetById(entity.Constraints.PrimaryId, domainEnvironment).Name,
                                         VarName_DTO,
                                         NamingHelper.ToDTOPropertyName(childAttr),
                                         cw.AsAttributeValue(childAttr, environment));
                            cw.Else();
                            cw.WriteLine("{0}.{1} = null;",
                                         VarName_DomainObject,
                                         r.ChildName);
                            cw.EndIf();
                        }
                        else
                        {
                            cw.WriteLine("{0}.{1} = {2}.{3}({4}.{5});",
                                         VarName_DomainObject,
                                         r.ChildName,
                                         domainEnvironment.ToTypeName(r.ParentEntity, true),
                                         DomainLayerConfig.Methods.GetById(entity.Constraints.PrimaryId, domainEnvironment).Name,
                                         VarName_DTO,
                                         NamingHelper.ToDTOPropertyName(childAttr));
                        }
                    }
                }
            }

            cw.EndScope();
        }
Exemplo n.º 17
0
        private void WriteDomainObjectToDTO(IEntity entity)
        {
            // Domain --> DTO: init DTO from domain object
            cw.WriteLine("internal static void {0}",
                         ToMethodSignature_DomainObjectToDTO(entity));
            cw.BeginScope();
            if (entity.HasSupertype)
            {
                cw.WriteLine("{0}.{1}({2}, {3});",
                             NamingHelperStack.ToServiceName(entity.Supertype, environment),
                             MethodName_DomainObjectToDTO,
                             VarName_DomainObject,
                             VarName_DTO);
            }

            foreach (IAttribute a in entity.Attributes)
            {
                if (a.ProcessInRelations)
                {
                    continue;
                }

                if (a.HasEnumerationType)
                {
                    cw.WriteLine("{0}.{1} = ({2})((int){3}.{1});",
                                 VarName_DTO,
                                 a.Name,
                                 interfacesEnvironment.ToTypeName(a, true),
                                 VarName_DomainObject);
                }
                else
                {
                    cw.WriteLine("{0}.{1} = {2}.{1};",
                                 VarName_DTO,
                                 a.Name,
                                 VarName_DomainObject);
                }
            }

            foreach (IRelation r in entity.Relations)
            {
                if (!r.IsParent(entity) && r.ChildNavigate)
                {
                    foreach (IRelationAttributeMatch am in r.AttributesMatch)
                    {
                        IAttribute childAttr  = am.Attribute;
                        IAttribute parentAttr = am.Attribute2;
                        if (r.ParentSide == RelationSide.Left)
                        {
                            childAttr  = am.Attribute2;
                            parentAttr = am.Attribute;
                        }
                        cw.Write("{0}.{1} = ",
                                 VarName_DTO,
                                 NamingHelper.ToDTOPropertyName(childAttr));
                        if (!childAttr.TypeDefinition.Required)
                        {
                            cw.Write("{0}.{1} == null ? ({2})null : ",
                                     VarName_DomainObject,
                                     r.ChildName,
                                     environment.ToTypeName(childAttr, false, true));
                        }
                        cw.WriteLine("{0}.{1}.{2};",
                                     VarName_DomainObject,
                                     r.ChildName,
                                     parentAttr.Name);
                    }
                }
            }

            cw.WriteLine("{0}.{1} = false;",
                         VarName_DTO,
                         NamingHelper.PropertyName_DTOChanged);

            cw.EndScope();
        }
Exemplo n.º 18
0
        private void WriteOnPost(IEntity entity)
        {
            cw.BeginFunction("public override object OnPost({0} {1})",
                             NamingHelperStack.ToServiceRequestName(entity, interfacesEnvironment),
                             VarName_Request);
            cw.WriteLine("{0} {1} = new {0}();",
                         NamingHelperStack.ToServiceResponseName(entity, interfacesEnvironment),
                         VarName_Response);
            WriteInitResponse(VarName_Response);
            string requestDto = String.Format("{0}.{1}", VarName_Request, NamingHelper.ToDTOPropertyName(entity));

            cw.BeginTry();

            bool declared = false;

            foreach (IEntityOperation operation in entity.Operations)
            {
                if (operation.Access != EntityOperationAccess.Public)
                {
                    continue;
                }

                string condition = String.Format("{0}.{1} != null", VarName_Request, OperationHelper.GetParamClassPropertyName(operation));
                if (!declared)
                {
                    cw.If(condition);
                    declared = true;
                }
                else
                {
                    cw.ElseIf(condition);
                }
                if (entity.Persistence.Persisted)
                {
                    cw.WriteLine("{0} domain = null;", domainEnvironment.ToTypeName(entity, true));
                    cw.WriteLine("if ({0} != null) domain = {1}.{2}({3});",
                                 requestDto,
                                 domainEnvironment.ToTypeName(entity, true),
                                 DomainLayerConfig.Methods.GetById(entity.PrimaryId, domainEnvironment).Name,
                                 entity.PrimaryId.Attributes.ToNamesString(", ", requestDto + ".", ""));
                    cw.WriteLine("if (domain == null) domain = new {0}();",
                                 domainEnvironment.ToTypeName(entity, true));
                }
                else
                {
                    cw.WriteLine("{0} domain = new {0}();",
                                 domainEnvironment.ToTypeName(entity, true));
                }
                cw.WriteLine("{0}({1}, domain);",
                             MethodName_DTOToDomainObject,
                             requestDto);
                if (entity.Persistence.Persisted)
                {
                    cw.WriteLine("domain.Save();");
                }
                if (operation.Params.HasReturns)
                {
                    cw.Write("{0}.{1}.{2} = ",
                             VarName_Request,
                             OperationHelper.GetParamClassPropertyName(operation),
                             operation.Params.Returns.Name,
                             operation.Name);
                }
                cw.Write("domain.{0}(", operation.Name);
                for (int i = 0; i < operation.Params.Count; i++)
                {
                    if (operation.Params[i].IsOut || operation.Params[i].IsRef)
                    {
                        throw new GlException(
                                  "Output or reference parameters are not allowed on service layer. " +
                                  "Use ordinal parameters or define operation as internal. {0}",
                                  operation.Params[i].ToString());
                    }

                    cw.Write("{0}{1}.{2}.{3}",
                             i == 0 ? "" : ", ",
                             VarName_Request,
                             OperationHelper.GetParamClassPropertyName(operation),
                             operation.Params[i].Name);
                }
                cw.WriteLine(");");
                cw.WriteLine("{0}(domain, {1});",
                             MethodName_DomainObjectToDTO,
                             requestDto);
                //oph.WriteParamClassesPropertiesInitialization(entity);
                cw.WriteLine("{0}.{1} = {2}.{1};",
                             VarName_Response,
                             NamingHelper.ToDTOPropertyName(entity),
                             VarName_Request);
                cw.WriteLine("{0}.{1} = {2}.{1};",
                             VarName_Response,
                             OperationHelper.GetParamClassPropertyName(operation),
                             VarName_Request);
            }

            if (entity.Persistence.Persisted)
            {
                string condition2 = String.Format("{0} != null", requestDto);
                if (!declared)
                {
                    cw.If(condition2);
                }
                else
                {
                    cw.ElseIf(condition2);
                }
                declared = true;
                cw.WriteLine("{0} uow = new {0}();", NamingHelper.ClassName_UnitOfWorkDTO);
                cw.WriteLine("uow.Save({0}.{1});", VarName_Request, NamingHelper.ToDTOPropertyName(entity));
                cw.WriteLine("{0}.{1} = {2}.Commit(uow, null);",
                             VarName_Response,
                             NamingHelper.PropertyName_CommitResult,
                             NamingHelperStack.ToServiceName(NamingHelper.ServiceName_Persistence));
                cw.WriteLine("{0}.{1} = (uow.WorkItems[0].Item as {2});",
                             VarName_Response,
                             NamingHelper.ToDTOPropertyName(entity),
                             NamingHelper.ToDTOTypeName(entity, interfacesEnvironment));
                cw.If("{0}.{1}.HasError == true",
                      VarName_Response,
                      NamingHelper.PropertyName_CommitResult);
                WriteResponceError(VarName_Response, '"' + "Error saving object" + '"', null);
                cw.EndIf();
                cw.ElseIf("{0}.{1} != null", VarName_Request, NamingHelperStack.ParamName_Query);
                cw.WriteLine("{0} {1} = new {0}();",
                             NamingHelperStack.ToServiceResponseCollectionName(entity, interfacesEnvironment),
                             VarName_ResponseList);
                WriteInitResponse(VarName_ResponseList);
                cw.BeginTry();
                cw.WriteLine("IList<{0}> list = {0}.{1}({2}.{3}, {4}.ToDomainQueryParams({2}.{5}), {2}.{6} != null ? {2}.{6}.Value : 0, {2}.{7} != null ? {2}.{7}.Value : {8});",
                             domainEnvironment.ToTypeName(entity, true),
                             DomainLayerConfig.Methods.GetPageByHQL().Name,
                             VarName_Request,
                             NamingHelperStack.ParamName_Query,
                             ClassName_DomainQueryFactory,
                             NamingHelperStack.ParamName_QueryParams,
                             NamingHelperStack.ParamName_PageNumber,
                             NamingHelperStack.ParamName_PageSize,
                             RestServiceHelper.MaxPageSize);
                cw.WriteLine("{0}.{1} = {2}(list);",
                             VarName_ResponseList,
                             NamingHelperStack.ToDTOCollectionPropertyName(entity),
                             MethodName_DomainCollectionToDTO);
                cw.EndTry();
                WriteCatch(VarName_ResponseList);
                cw.WriteLine("return {0};", VarName_ResponseList);
            }
            if (declared)
            {
                cw.EndIf();
            }

            cw.EndTry();
            WriteCatch(VarName_Response);
            cw.WriteLine("return {0};", VarName_Response);
            cw.EndFunction();
        }
Exemplo n.º 19
0
        private void WriteOnGet(IEntity entity)
        {
            cw.BeginFunction("public override object OnGet({0} {1})",
                             NamingHelperStack.ToServiceRequestName(entity, interfacesEnvironment),
                             VarName_Request);
            cw.WriteLine("{0} {1} = new {0}();",
                         NamingHelperStack.ToServiceResponseName(entity, interfacesEnvironment),
                         VarName_Response);
            WriteInitResponse(VarName_Response);
            cw.WriteLine("{0} {1} = null;",
                         domainEnvironment.ToTypeName(entity, true),
                         VarName_DomainObject);
            cw.BeginTry();

            cw.If(entity.Constraints.PrimaryId.Attributes.ToNamesString(" && ", VarName_Request + ".", " != null"));      // Global
            // Request by primary id
            cw.WriteLine("{0} = {1}.{2}({3});",
                         VarName_DomainObject,
                         domainEnvironment.ToTypeName(entity, true),
                         DomainLayerConfig.Methods.GetById(entity.Constraints.PrimaryId, domainEnvironment).Name,
                         cw.ToSeparatedString(entity.Constraints.PrimaryId.Attributes.ToList(), ", ",
                                              delegate(object item, int count) {
                return(String.Format("{0}.{1}{2}",
                                     VarName_Request,
                                     (item as IAttribute).Name,
                                     environment.IsNullable(item as IAttribute) ? ".Value" : ""));
            })
                         );

            // Request by uid
            foreach (IUniqueId uid in entity.Constraints.UniqueIds)
            {
                cw.ElseIf(uid.Attributes.ToNamesString(" && ", VarName_Request + ".", " != null"));
                cw.WriteLine("{0} = {1}.{2}({3});",
                             VarName_DomainObject,
                             domainEnvironment.ToTypeName(entity, true),
                             DomainLayerConfig.Methods.GetByUniqueId(uid, domainEnvironment).Name,
                             cw.ToSeparatedString(uid.Attributes.ToList(), ", ",
                                                  delegate(object item, int count) {
                    string arg = String.Empty;
                    if ((item as IAttribute).Type is IEnumerationType)
                    {
                        arg = String.Format("({0})",
                                            domainEnvironment.ToTypeName((item as IAttribute), true));
                    }
                    arg += String.Format("{0}.{1}{2}",
                                         VarName_Request,
                                         (item as IAttribute).Name,
                                         environment.IsNullable(item as IAttribute) ? ".Value" : "");
                    return(arg);
                })
                             );
            }

            // Request by relation
            foreach (IRelation r in entity.Parents)
            {
                cw.ElseIf(r.ChildAttributes.ToNamesString(" && ", VarName_Request + ".", " != null"));
                cw.WriteLine("{0} {1} = new {0}();",
                             NamingHelperStack.ToServiceResponseCollectionName(entity, interfacesEnvironment),
                             VarName_ResponseList);
                WriteInitResponse(VarName_ResponseList);
                cw.BeginTry();
                cw.WriteLine("IList<{0}> list = ",
                             domainEnvironment.ToTypeName(entity, true));
                cw.Indent++;
                cw.WriteLine("{0}.{1};",
                             domainEnvironment.ToTypeName(entity, true),
                             DomainLayerConfig.Methods.GetByRelationParent(r, domainEnvironment)
                             .Call(r.ChildAttributes.ToNamesString(", ", VarName_Request + ".", ".Value"))
                             );
                cw.Indent--;
                cw.WriteLine("{0}.{1} = {2}(list);",
                             VarName_ResponseList,
                             NamingHelperStack.ToDTOCollectionPropertyName(entity),
                             MethodName_DomainCollectionToDTO);
                cw.EndTry();
                WriteCatch(VarName_ResponseList);
                cw.WriteLine("return {0};", VarName_ResponseList);
            }

            cw.Else();             // Collection request TOP MaxPageSize or by page
            cw.WriteLine("{0} {1} = new {0}();",
                         NamingHelperStack.ToServiceResponseCollectionName(entity, interfacesEnvironment),
                         VarName_ResponseList);
            WriteInitResponse(VarName_ResponseList);
            cw.BeginTry();
            cw.WriteLine("IList<{0}> list = null;",
                         domainEnvironment.ToTypeName(entity, true));
            cw.If("{0}.{1} != null && {0}.{2} != null",
                  VarName_Request,
                  NamingHelperStack.ParamName_PageNumber,
                  NamingHelperStack.ParamName_PageSize);
            cw.If("{0}.{1} != null && {0}.{2} != null",
                  VarName_Request,
                  NamingHelperStack.ParamName_SortOrderProperty,
                  NamingHelperStack.ParamName_SortOrderAsc);
            cw.WriteLine("list = {0}.GetPage({1}.{2}.Value, {1}.{3}.Value, new {4}[] {{ new {4}({1}.{5}, {1}.{6}.Value) }});",
                         domainEnvironment.ToTypeName(entity, true),
                         VarName_Request,
                         NamingHelperStack.ParamName_PageNumber,
                         NamingHelperStack.ParamName_PageSize,
                         DomainLayerConfig.GetClassName_SortOrder(true),
                         NamingHelperStack.ParamName_SortOrderProperty,
                         NamingHelperStack.ParamName_SortOrderAsc);
            cw.Else();
            cw.WriteLine("list = {0}.GetPage({1}.{2}.Value, {1}.{3}.Value, null);",
                         domainEnvironment.ToTypeName(entity, true),
                         VarName_Request,
                         NamingHelperStack.ParamName_PageNumber,
                         NamingHelperStack.ParamName_PageSize);
            cw.EndIf();
            cw.Else();
            cw.WriteLine("list = {0}.GetPage(0, {1}, null);",
                         domainEnvironment.ToTypeName(entity, true),
                         RestServiceHelper.MaxPageSize);
            cw.EndIf();
            cw.WriteLine("{0}.{1} = {2}(list);",
                         VarName_ResponseList,
                         NamingHelperStack.ToDTOCollectionPropertyName(entity),
                         MethodName_DomainCollectionToDTO);
            cw.EndTry();
            WriteCatch(VarName_ResponseList);
            cw.WriteLine("return {0};", VarName_ResponseList);

            cw.EndIf();             // Global
            cw.WriteLine();


            cw.If("{0} != null", VarName_DomainObject);
            cw.WriteLine("{0} {1} = new {0}();",
                         NamingHelperStack.ToDTOTypeName(entity, interfacesEnvironment),
                         VarName_DTO);
            cw.WriteLine("{0}.{1}({2}, {3});",
                         NamingHelperStack.ToServiceName(entity, null),
                         MethodName_DomainObjectToDTO,
                         VarName_DomainObject,
                         VarName_DTO);
            cw.WriteLine("{0}.{1} = {2};",
                         VarName_Response,
                         NamingHelperStack.ToDTOPropertyName(entity),
                         VarName_DTO);
            cw.EndIf();
            cw.EndTry();
            WriteCatch(VarName_Response);
            cw.WriteLine("return {0};", VarName_Response);

            cw.EndFunction();
        }
Exemplo n.º 20
0
        private void WritePersistence()
        {
            if (genie.Lamp.Config.Patterns.Security != null)
            {
                cw.WriteLine("[Authenticate]");
            }
            cw.WriteLine("public partial class {0} : RestServiceBase<{1}>, IRequiresRequestContext",
                         NamingHelperStack.ToServiceName(NamingHelper.ServiceName_Persistence),
                         NamingHelperStack.ToServiceRequestName(NamingHelper.ServiceName_Persistence));
            cw.BeginScope();
            cw.WriteLine("public override object OnGet({0} {1})",
                         NamingHelperStack.ToServiceRequestName(NamingHelper.ServiceName_Persistence),
                         VarName_Request);
            cw.BeginScope();
            cw.WriteLine("return new {0}();",
                         NamingHelperStack.ToServiceResponseName(NamingHelper.ServiceName_Persistence));
            cw.EndScope();
            cw.WriteLine();

            cw.WriteLine("public override object OnPost({0} {1})",
                         NamingHelperStack.ToServiceRequestName(NamingHelper.ServiceName_Persistence),
                         VarName_Request);
            cw.BeginScope();
            cw.WriteLine("{0} {1} = new {0}();",
                         NamingHelperStack.ToServiceResponseName(NamingHelper.ServiceName_Persistence),
                         VarName_Response);
            cw.WriteLine("{0}.{1} = {2}.Commit({3}.{4}, {0}.{5});",
                         VarName_Response,
                         NamingHelper.PropertyName_CommitResult,
                         NamingHelperStack.ToServiceName(NamingHelper.ServiceName_Persistence),
                         VarName_Request,
                         NamingHelper.PropertyName_UnitOfWorkDTO,
                         PropertyName_UpdatedObjects);
            cw.WriteLine("return {0};", VarName_Response);
            cw.EndScope();
            cw.WriteLine();
            // Commit
            cw.BeginFunction("public static {0} Commit({1} {2}, {3} {4})",
                             NamingHelper.ClassName_CommitResult,
                             NamingHelper.ClassName_UnitOfWorkDTO,
                             NamingHelper.VarName_UnitOfWork,
                             ClassName_UpdatedObjects,
                             VarName_UpdatedObjects);
            cw.WriteLine("{0} commitResult = new {0}();", NamingHelper.ClassName_CommitResult);
            cw.WriteLine("{0}.{1} uow = new {0}.{1}();",
                         DomainLayerConfig.PersistenceNamespace,
                         NamingHelper.ClassName_UnitOfWorkDomain);
            cw.WriteLine("foreach({0}.WorkItem wi in unitOfWork.WorkItems)",
                         NamingHelper.ClassName_UnitOfWorkDTO);
            cw.BeginScope();
            cw.WriteLine("InitDomain(wi);");
            cw.If("wi.Action == {0}.Action.Save",
                  NamingHelper.ClassName_UnitOfWorkDTO);
            cw.WriteLine("uow.Save(wi.DomainObject);");
            cw.Else();
            cw.WriteLine("uow.Delete(wi.DomainObject);");
            cw.EndIf();
            cw.EndScope();
            cw.BeginTry();
            cw.WriteLine("uow.Commit();");
            cw.WriteLine("if ({0} != null) {0}.Clear();", VarName_UpdatedObjects);
            cw.WriteLine("foreach({0}.WorkItem wi in unitOfWork.WorkItems)",
                         NamingHelper.ClassName_UnitOfWorkDTO);
            cw.BeginScope();
            cw.If("wi.Action != {0}.Action.Delete", NamingHelper.ClassName_UnitOfWorkDTO);
            cw.WriteLine("InitDTO(wi);");
            cw.WriteLine("if ({0} != null) {0}.Add(wi.Item.Internal_ObjectId, wi.Item);", VarName_UpdatedObjects);
            cw.EndIf();
            cw.EndScope();
            cw.EndTry();
            cw.BeginCatch("Exception e");
            cw.WriteLine("commitResult.HasError = true;", VarName_Response);
            cw.WriteLine("commitResult.Message = e.Message;", VarName_Response);
            cw.WriteLine("commitResult.ExceptionString = e.ToString();", VarName_Response);
            cw.EndCatch();
            cw.WriteLine("return commitResult;");
            cw.EndFunction();
            cw.WriteLine();

            // InitDomain
            cw.BeginFunction("private static void InitDomain({0}.WorkItem wi)",
                             NamingHelper.ClassName_UnitOfWorkDTO);
            cw.WriteLine("switch(({0})wi.Item.Get{1}())",
                         NamingHelper.EnumName_DomainTypes,
                         NamingHelper.PropertyName_DomainTypeId);
            cw.BeginScope();
            foreach (IEntity entity in Model.Entities)
            {
                if (!entity.Persistence.Persisted)
                {
                    continue;
                }
                cw.WriteLine("case {0}.{1}:",
                             NamingHelper.EnumName_DomainTypes,
                             NamingHelper.ToDomainTypesEnumItemName(entity));
                cw.BeginScope();
                List <string> getByIdArgs = new List <string>();
                foreach (IAttribute a in entity.PrimaryId.Attributes)
                {
                    getByIdArgs.Add(String.Format("(wi.Item as {0}).{1}",
                                                  NamingHelperStack.ToDTOTypeName(entity, interfacesEnvironment),
                                                  a.Name));
                }
                cw.WriteLine("wi.DomainObject = {0}.{1};",
                             domainEnvironment.ToTypeName(entity, true),
                             DomainLayerConfig.Methods.GetById(entity.PrimaryId, domainEnvironment).Call(getByIdArgs.ToArray()));
                cw.If("wi.DomainObject == null");
                cw.WriteLine("wi.DomainObject = new {0}();",
                             domainEnvironment.ToTypeName(entity, true));
                cw.EndIf();
                cw.WriteLine("{0}.{1}(wi.Item as {2}, wi.DomainObject as {3});",
                             NamingHelperStack.ToServiceName(entity, environment),
                             MethodName_DTOToDomainObject,
                             NamingHelperStack.ToDTOTypeName(entity, interfacesEnvironment),
                             domainEnvironment.ToTypeName(entity, true));
                cw.WriteLine("break;");
                cw.EndScope();
            }
            cw.WriteLine("default: throw new ApplicationException(\"Cannot save non-persistent object\");");
            cw.EndScope();
            cw.EndFunction();
            cw.WriteLine();
            // InitDTO
            cw.WriteLine("private static void InitDTO({0}.WorkItem wi)",
                         NamingHelper.ClassName_UnitOfWorkDTO);
            cw.BeginScope();
            cw.WriteLine("switch(({0})wi.Item.Get{1}())",
                         NamingHelper.EnumName_DomainTypes,
                         NamingHelper.PropertyName_DomainTypeId);
            cw.BeginScope();
            foreach (IEntity entity in Model.Entities)
            {
                if (!entity.Persistence.Persisted)
                {
                    continue;
                }
                cw.WriteLine("case {0}.{1}:",
                             NamingHelper.EnumName_DomainTypes,
                             NamingHelper.ToDomainTypesEnumItemName(entity));
                cw.BeginScope();
                cw.WriteLine("(wi.DomainObject as {0}).Refresh();",
                             domainEnvironment.ToTypeName(entity, true));
                cw.WriteLine("{0}.{1}(wi.DomainObject as {2}, wi.Item as {3});",
                             NamingHelperStack.ToServiceName(entity, environment),
                             MethodName_DomainObjectToDTO,
                             domainEnvironment.ToTypeName(entity, true),
                             NamingHelperStack.ToDTOTypeName(entity, interfacesEnvironment));
                cw.WriteLine("break;");
                cw.EndScope();
            }
            cw.WriteLine("default: throw new ApplicationException(\"Cannot process non-persistent object\");");
            cw.EndScope();
            cw.EndScope();

            cw.EndScope();             // Class
        }
        private void WriteEntityDTOAdapterCollection(IEntity entity)
        {
            string baseClass = String.Format("{0}<{1}",
                                             entity.Persistence.Persisted ? ClassName_PersistentDTOAdapterCollection : ClassName_DTOAdapterCollection,
                                             NamingHelperStack.ToDTOAdapterTypeName(entity, environment));

            if (entity.Persistence.Persisted)
            {
                baseClass += ", " + NamingHelper.ToDTOTypeName(entity, dtoEnvironment) + ">";
            }
            else
            {
                baseClass += ">";
            }

            cw.BeginClass(AccessLevel.Public,
                          true,
                          NamingHelperStack.ToDTOAdapterCollectionTypeName(entity, null),
                          baseClass);

            cw.BeginRegion("Constructors");
            cw.BeginFunction("public {0} ()",
                             NamingHelperStack.ToDTOAdapterCollectionTypeName(entity, null));
            cw.EndFunction();
            cw.BeginFunction("public {0} ({1} {2})",
                             NamingHelperStack.ToDTOAdapterCollectionTypeName(entity, null),
                             NamingHelperStack.ToDTOCollectionTypeName(entity, dtoEnvironment),
                             VarName_DTOCollection);
            cw.WriteLine("foreach ({0} {1} in {2})",
                         NamingHelper.ToDTOTypeName(entity, dtoEnvironment),
                         VarName_DTO,
                         VarName_DTOCollection);
            cw.BeginScope();
            cw.WriteLine("this.InternalAdd(new {0}({1}));",
                         NamingHelperStack.ToDTOAdapterTypeName(entity, environment),
                         VarName_DTO);
            cw.EndScope();
            cw.EndFunction();
            cw.EndRegion();
            cw.WriteLine();

            // Get page
//			cw.BeginFunction("public static {0} {1}(int pageNum = 0, int pageSize = 20)",
//			                 NamingHelperStack.ToDTOAdapterCollectionTypeName(entity, null),
//			                 MethodName_GetPage);
//		    cw.WriteLine("return null;");
//			cw.EndFunction();
//		    cw.WriteLine();

            // Get by query
            cw.BeginFunction("public static {0} {1}(string query, {2}.{3} queryParams, int pageNum = 0, int pageSize = {4})",
                             NamingHelperStack.ToDTOAdapterCollectionTypeName(entity, null),
                             MethodName_GetByQuery,
                             interfacesEnvironment.BaseNamespace,
                             NamingHelper.ClassName_ServicesQueryParams,
                             RestServiceHelper.MaxPageSize);
            cw.WriteLine("{0} request = new {0}();", NamingHelperStack.ToServiceRequestName(entity, interfacesEnvironment));
            cw.WriteLine("request.{0} = query;", NamingHelperStack.ParamName_Query);
            cw.WriteLine("request.{0} = queryParams;", NamingHelperStack.ParamName_QueryParams);
            cw.WriteLine("request.{0} = pageNum;", NamingHelperStack.ParamName_PageNumber);
            cw.WriteLine("request.{0} = pageSize;", NamingHelperStack.ParamName_PageSize);
            cw.WriteLine("{0} {1} =",
                         NamingHelperStack.ToServiceResponseCollectionName(entity, interfacesEnvironment),
                         VarName_Response);
            cw.Indent++;
            cw.WriteLine("WebClientFactory.GetJsonClient()");
            cw.WriteLine(".Post<{0}>(\"/{1}\", request);",
                         NamingHelperStack.ToServiceResponseCollectionName(entity, interfacesEnvironment),
                         NamingHelperStack.ToServiceName(entity, null));
            cw.Indent--;
            cw.WriteLine("WebClientFactory.CheckResponseStatus({0}.ResponseStatus);",
                         VarName_Response);
            cw.WriteLine("return new {0}({1}.{2});",
                         NamingHelperStack.ToDTOAdapterCollectionTypeName(entity, null),
                         VarName_Response,
                         NamingHelperStack.ToDTOCollectionPropertyName(entity));
            cw.EndFunction();
            cw.WriteLine();

            // Get by relations
            foreach (IRelation r in entity.Parents)
            {
                cw.BeginFunction("public static {0} {1}",
                                 NamingHelperStack.ToDTOAdapterCollectionTypeName(entity, null),
                                 ServicesLayerConfig.Methods.GetByRelationParent(r, interfacesEnvironment).Signature);
                cw.WriteLine("{0} request = new {0}();", NamingHelperStack.ToServiceRequestName(entity, interfacesEnvironment));
                cw.WriteLine("{0} {1} = WebClientFactory.GetJsonClient()",
                             NamingHelperStack.ToServiceResponseCollectionName(entity, interfacesEnvironment),
                             VarName_Response);
                cw.Indent++;
                cw.WriteLine(".Get<{0}>(String.Format(\"/{1}/{2}\", {3}));",
                             NamingHelperStack.ToServiceResponseCollectionName(entity, interfacesEnvironment),
                             NamingHelperStack.ToServiceName(entity, null),
                             cw.ToSeparatedString(r.ChildAttributes.ToList(),
                                                  "/",
                                                  delegate(object item, int count)
                                                  { return(String.Format("{0}/{{{1}}}", (item as IAttribute).Name, count)); }),
                             environment.ToArguments(r.ChildAttributes)
                             );
                cw.Indent--;
                cw.WriteLine("WebClientFactory.CheckResponseStatus({0}.ResponseStatus);",
                             VarName_Response);
                cw.WriteLine("return new {0}({1}.{2});",
                             NamingHelperStack.ToDTOAdapterCollectionTypeName(entity, null),
                             VarName_Response,
                             NamingHelperStack.ToDTOCollectionPropertyName(entity));
                cw.EndFunction();
                cw.WriteLine();
            }

            cw.EndClass();
        }